网站首页 美食营养 游戏数码 手工爱好 生活家居 健康养生 运动户外 职场理财 情感交际 母婴教育 时尚美容

file_get_contents出现错误的解决办法

时间:2024-10-31 04:09:31

1、打开php.ini文件,extension=php_openssl.dll去掉前面的分号,allow_url_include = off改为allow_url_include = On,然后重启服务就可以了。如图

file_get_contents出现错误的解决办法file_get_contents出现错误的解决办法

2、或者也可以通过使用curl函数来替代file_get_contents函数,当然php.ini打开了curl,extension=php_curl.dll,如图

file_get_contents出现错误的解决办法

3、最后分享个curl的函数<?phpfunction getSslPage($url) {$ch = curl_init();艘早祓胂curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE);curl_setopt($ch, CURLOPT_HEADER, false);curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);curl_setopt($ch, CURLOPT_URL, $url);curl_setopt($ch, CURLOPT_REFERER, $url);curl_setopt($ch, CURLOPT_RETURNTRANSFER, TRUE);$result = curl_exec($ch);curl_close($ch);return $result;}echo getSslPage($_GET['url']);?>

© 2025 小知经验
信息来自网络 所有数据仅供参考
有疑问请联系站长 site.kefu@gmail.com