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 儿媳买车妈妈祝福语简短
14 毕业送礼老师祝福语简短
15 同事辞职正常祝福语简短
16 恭贺新婚文案祝福语简短
17 金店立秋祝福语简短英文
18 婆婆高寿祝福语大全简短