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 婶婶拜年祝福语大全简短