php file_get_contents函数抓取页面信息,详见文中的例子。
<?php
/**
@抓取页面信息
@file_get_contents函数应用
@site www.jb200.com
*/
$url="http://www.jb200.com/article/518.html";
$contents=@file_get_contents($url);
preg_match_all("/<h1>(.*?)</h1>/is",$contents,$content);
//测试,打印结果
print_r($content[0]);
?>