酷酷缘分

文章
3
资源
0
加入时间
2年10月17天

php根据URL获得网页内容

PHP 中根据url来获得网页内容非常的方便,可以通过系统内置函数file_get_contents(),传入url,即可返回网页的内容,比如获得百度首页的内容代码为:[php] view plain copy print?$html = file_get_contents('http://www.baidu.com/');