如何用PHP编写实例抓取特定网页内容?
- 内容介绍
- 文章标签
- 相关推荐
本文共计285个文字,预计阅读时间需要2分钟。
PHP中抓取网页内容的实例详解:方法一:使用file_get_contents方法实现$URL=http://news.sina.com.cn/c/nd/2016-10-23/doc-ifxwztru6951143.s;$=file_get_contents($URL); // 如果出现中文乱码,使用下面的编码转换
php中抓取网页内容的实例详解
方法一:
使用file_get_contents方法实现
$url = "news.sina.com.cn/c/nd/2016-10-23/doc-ifxwztru6951143.shtml"; $html = file_get_contents($url); //如果出现中文乱码使用下面代码 //$getcontent = iconv("gb2312", "utf-8",$html); echo "<textarea style='width:800px;height:600px;'>".$html."</textarea>";
代码很简单,一看就懂,不解释了。
本文共计285个文字,预计阅读时间需要2分钟。
PHP中抓取网页内容的实例详解:方法一:使用file_get_contents方法实现$URL=http://news.sina.com.cn/c/nd/2016-10-23/doc-ifxwztru6951143.s;$=file_get_contents($URL); // 如果出现中文乱码,使用下面的编码转换
php中抓取网页内容的实例详解
方法一:
使用file_get_contents方法实现
$url = "news.sina.com.cn/c/nd/2016-10-23/doc-ifxwztru6951143.shtml"; $html = file_get_contents($url); //如果出现中文乱码使用下面代码 //$getcontent = iconv("gb2312", "utf-8",$html); echo "<textarea style='width:800px;height:600px;'>".$html."</textarea>";
代码很简单,一看就懂,不解释了。

