欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

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