PHP

解决PHP中file-get-contents函数的方法

时间:2024-10-06 19:39:27 PHP 我要投稿
  • 相关推荐

解决PHP中file-get-contents函数的方法

  方法一:

  在php中,抓取https的网站,提示如下的错误内容:

  Warning: file_get_contents() [function.file-get-contents]: failed to open stream: Invalid argument in I:Webmyphpa.php on line 16

  打开php.ini文件找到 ;extension=php_openssl.dll ,去掉双引号”;” ,重启web服务器即可。

  apache服务器的话,可以同时启用mod_ssl模块测试。

  如果不方便修改服务器配置,可以参考使用如下的函数来解决:

  代码示例:

  <?php//file_get_contents抓取https地址内容function getCurl($url){$ch = curl_init();curl_setopt($ch, CURLOPT_URL,$url);curl_setopt($ch, CURLOPT_RETURNTRANSFER,1);curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, false);$result = curl_exec($ch);curl_close ($ch);return $result;}

  方法二:

  在php中,利用file_get_contents函数抓取url是https开头的网站网页内容时,会出现类似下面的错误警告:

  Warning: file_get_contents(https://127.0.0.1/index.php) [function.file-get-contents]: failed to open stream: Invalid argument in E:websiteblogtest.php on line 25

  打开php.ini找到 ;extension=php_openssl.dll ,去掉双引号”;” ,重启web服务器即可。

  apache的可以同时启用mod_ssl模块测试

【解决PHP中file-get-contents函数的方法】相关文章:

Excel中if函数使用的方法06-16

excel中sumif函数使用方法03-23

Excel中COUNTIF函数的使用方法01-23

我国企业管理沟通中存在的问题及解决方法03-03

如何解决Windows8中C盘重命名失败的方法07-16

光驱不读盘的解决方法07-16

解决硬盘读写速度变慢的方法03-09

婴儿呛奶的解决方法09-09

word停止工作的解决方法08-17

CAD致命错误解决方法07-17