
02.09.2009, 16:00
|
|
Познавший АНТИЧАТ
Регистрация: 24.06.2008
Сообщений: 1,996
Провел на форуме: 6075534
Репутация:
2731
|
|
4es,
PHP код:
$url = 'http://yoursite.com/page.php';
$ch = curl_init($url);
...
curl_setopt();
...
$res = curl_exec($ch);
preg_match('#<title>(.*)<\/title>#',$res,$matches);
print_r($matches);
|
|
|