php源码 fsockopen获取网页内容实例详解

5年以前  |  阅读数:929 次  |  编程语言:PHP 

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 选项开启。

使用fsockopen获取网页内容

具体源代码如下:


    <?php
    $host = "www.manongjc.com";
    $page = "/index.htm";
    $fp = fsockopen( "$host", 80, $errno, $errdesc );
    if ( ! $fp ) {
     die ( "Couldn't connect to $host:\nError: $errno\nDesc: $errdesc\n" );
    }

    $request = "GET $page HTTP/1.0\r\n";
    $request .= "Host: $host\r\n";
    $request .= "Referer: http://www.manongjc.com/page.html\r\n";
    $request .= "User-Agent: PHP test client\r\n\r\n";

    $page = array();
    fputs ( $fp, $request );
    while ( ! feof( $fp ) ) {
     $page[] = fgets( $fp, 1024 );
    }
    fclose( $fp );
    print "the server returned ".(count($page))." lines!";
    ?>





以上就是php源码 fsockopen获取网页内容实例详解的知识,有需要的小伙伴可以参考下,谢谢大家对本站的支持!

 相关文章:
PHP分页显示制作详细讲解
SSH 登录失败:Host key verification failed
获取IMSI
将二进制数据转为16进制以便显示
获取IMEI
文件下载
贪吃蛇
双位运算符
PHP自定义函数获取搜索引擎来源关键字的方法
Java生成UUID
发送邮件
年的日历图
提取后缀名
在Zeus Web Server中安装PHP语言支持
让你成为最历害的git提交人
Yii2汉字转拼音类的实例代码
再谈PHP中单双引号的区别详解
指定应用ID以获取对应的应用名称
Python 2与Python 3版本和编码的对比
php封装的page分页类完整实例