php 获取远程网页内容的函数
程序员文章站
2023-11-26 12:40:16
<?php
$curdomain = $_server['http_host'];
$strhtml = file_get_contents('//www.jb51.net/domainparking.asp?gdomname='.$curdomain);
echo $strhtml
?>
早就在网上看到说file_get_contents不稳定,果然碰到了。。。
另一方面也说明了程序的容错性很差啊。。。
恩,言归正传吧。
碰到的是这个错误:
file_get_contents(http://***.php): failed to open stream: http request failed!
g一下,决定用curl
$curdomain = $_server['http_host'];
$strhtml = file_get_contents('//www.jb51.net/domainparking.asp?gdomname='.$curdomain);
echo $strhtml
?>
早就在网上看到说file_get_contents不稳定,果然碰到了。。。
另一方面也说明了程序的容错性很差啊。。。
恩,言归正传吧。
碰到的是这个错误:
file_get_contents(http://***.php): failed to open stream: http request failed!
g一下,决定用curl
上一篇: Spark SQL常见4种数据源详解
下一篇: 分布式幂等问题解决方案三部曲