php 获取远程网页内容的函数

<?php
$curDomain = $_SERVER['HTTP_HOST'];
$strHTML = file_get_contents('https://www.jb51.net/DomainParking.asp?gDomName='.$curDomain);
echo $strHTML
?>
早就在网上看到说file_get_contents不稳定,果然碰到了。。。
另一方面也说明了程序的容错性很差啊。。。
恩,言归正传吧。
碰到的是这个错误:
file_get_contents(***.php): failed to open stream: HTTP request failed!
G一下,决定用curl

您可能感兴趣的文章:

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:http://www.heiqu.com/9e40489947e12ed35d67f0c9414e5419.html