抓取网页内容,用file_get_contents函数

必须得指明要抓取网页的地址

$str=file_get_contents("http://write.blog.csdn.net/postedit");

flie_put_contents("test.txt",$str);

//将抓取的内容写入text.txt文件中




你可能感兴趣的:(抓取网页内容,用file_get_contents函数)