当前位置:首页 > PHP教程 > php高级应用 > 列表

php中采集抓取页面函数详解

发布:smiling 来源: PHP粉丝网  添加日期:2014-09-10 20:48:30 浏览: 评论:0 

在php中提供了大量的获取远程服务器文件的函数,包括有:file()函数、file_get_contents()函数、fopen()->fread()->fclose()模式、curl方式、fsockopen()函数、socket模式等等,下面我来分别来介绍介绍.

1.file()函数

file() 函数把整个文件读入一个数组中,与 file_get_contents() 类似,不同的是 file() 将文件作为一个数组返回,数组中的每个单元都是文件中相应的一行,包括换行符在内.

如果失败,则返回 false,代码如下:

  1. <?php  
  2. $url='http://www.phpfensi.com';  
  3. $lines_array=file($url);  
  4. $lines_string=implode('',$lines_array);  
  5. echo htmlspecialchars($lines_string); 
  6. ?> 

2.file_get_contents()函数

file_get_contents() 函数把整个文件读入一个字符串中.

和 file() 一样,不同的是 file_get_contents() 把文件读入一个字符串,file_get_contents() 函数是用于将文件的内容读入到一个字符串中的首选方法,如果操作系统支持,还会使用内存映射技术来增强性能,代码如下:

  1. <?php  
  2. $url='http://www.phpfensi.com';  
  3. $lines_string=file_get_contents($url);  
  4. echo htmlspecialchars($lines_string); 
  5. ?> 

使用file_get_contents和fopen必须空间开启allow_url_fopen,方法:编辑php.ini,设置 allow_url_fopen = On,allow_url_fopen关闭时fopen和file_get_contents都不能打开远程文件.

3.fopen()->fread()->fclose()模式,代码如下:

  1. <?php  
  2. $url='http://www.phpfensi.com';  
  3. $handle=fopen($url,"rb");  
  4. $lines_string="";  
  5. do{  
  6.     $data=fread($handle,1024); 
  7.      if(strlen($data)==0) { 
  8.         break
  9.     }  
  10.     $lines_string.=$data;  
  11. }while(true);  
  12. fclose($handle);  
  13. echo htmlspecialchars($lines_string); 
  14. ?> 

4.curl方式

使用curl必须空间开启curl,方法:windows下修改php.ini,将extension=php_curl.dll前面的分号去掉,而且需要拷贝ssleay32.dll和libeay32.dll到C:WINDOWSsystem32下;Linux下要安装curl扩展,代码如下:

  1. $url='http://www.phpfensi.com';  
  2. $ch=curl_init();  
  3. $timeout=5;  
  4. curl_setopt($ch, CURLOPT_URL, $url);  
  5. curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);  
  6. curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, $timeout);  
  7. $lines_string=curl_exec($ch);  
  8. curl_close($ch);  
  9. echo htmlspecialchars($lines_string); 

5. fsockopen()函数 socket模式

socket模式能否正确执行,也跟服务器的设置有关系,具体可以通过phpinfo查看服务器开启了哪些通信协议,比如我的本地php socket没开启http,只能使用udp测试一下了.

还有一个以curl_开头的函数,可以实现很多功能,有时间要好好研究,下面是关于fscokopen的介绍.

1.PHP fsockopen函数说明:

Open Internet or Unix domain socket connection(打开套接字链接)

Initiates a socket connection to the resource specified by target .

fsockopen() returns a file pointer which may be used together with the other file functions (such as fgets() , fgetss() , fwrite() , fclose() , and feof() ).就是返回一个文件句柄

开启PHP fsockopen这个函数

PHP fsockopen需要 PHP.ini 中 allow_url_fopen 选项开启,代码如下:

  1. <?php  
  2. set_time_limit(0);  
  3. $fp = fsockopen("www.phpfensi.com", 80, $errno$errstr, 30);  
  4. if (!$fp) {  
  5.    echo "$errstr ($errno)<br />n";  
  6. else {  
  7.    $out = "POST / HTTP/1.1rn";  
  8.    $out .= "Host:www.phpfensi.comrn";  
  9.    $out .= "Connection: Closernrn";  
  10.    fwrite($fp$out);  
  11.    while (!feof($fp)) {  
  12.        echo fgets($fp, 128);  
  13.    }  
  14.    fclose($fp);  
  15. ?>

Tags: php采集抓取 php采集页面函数

分享到: