php源码 fsockopen获取网页内容实例详解
PHPfsockopen函数说明:
OpenInternetorUnixdomainsocketconnection(打开套接字链接)
Initiatesasocketconnectiontotheresourcespecifiedbytarget.
fsockopen()returnsafilepointerwhichmaybeusedtogetherwiththeotherfilefunctions(suchasfgets(),fgetss(),fwrite(),fclose(),andfeof()).就是返回一个文件句柄
开启PHPfsockopen这个函数
PHPfsockopen需要PHP.ini中allow_url_fopen选项开启。
使用fsockopen获取网页内容
具体源代码如下:
<?php
$host="www.manongjc.com";
$page="/index.htm";
$fp=fsockopen("$host",80,$errno,$errdesc);
if(!$fp){
die("Couldn'tconnectto$host:\nError:$errno\nDesc:$errdesc\n");
}
$request="GET$pageHTTP/1.0\r\n";
$request.="Host:$host\r\n";
$request.="Referer:http://www.manongjc.com/page.html\r\n";
$request.="User-Agent:PHPtestclient\r\n\r\n";
$page=array();
fputs($fp,$request);
while(!feof($fp)){
$page[]=fgets($fp,1024);
}
fclose($fp);
print"theserverreturned".(count($page))."lines!";
?>
以上就是php源码fsockopen获取网页内容实例详解的知识,有需要的小伙伴可以参考下,谢谢大家对本站的支持!
热门推荐
10 男朋友的祝福语简短
11 除夕祝福语简短创意牛年
12 亲戚结婚祝福语简短大全
13 情侣520的祝福语简短
14 心媳妇生日祝福语简短
15 给妹妹婚礼祝福语简短
16 CAD考试祝福语毕业简短
17 赞美祝福语大全简短的
18 立春祝福语简短微信