$page = 'http://www.google.ru/'; preg_match('#<b>(.*?)</b>#i', file_get_contents($page), $match); print_r($match);
$page = file_get_contents("http://www.google.ru/"); preg_match('#<b>(.*?)</b>#i', $page, $match); print_r($match);