解决file_get_contents返回false的方法
程序员文章站
2022-03-14 14:19:38
...
解决php函数file_get_contents返回false的解决方法:
1. 看看php.ini里的这个这俩必须是开启的 extension=php_openssl.dll 和 allow_url_fopen=on 是开启的
2. 如果以上配置都是开启的,那可能是服务商把file_get_contents关闭了;这时只能自己写一个http请求函数了。
自写的http_request函数代码,直接拿去用好
/** * 通用CURL请求 * @param $url 需要请求的url * @param null $data * return mixed 返回值 json格式的数据 */ public function http_request($url, $data = null) { $curl = curl_init(); curl_setopt($curl, CURLOPT_URL, $url); curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, false); curl_setopt($curl, CURLOPT_SSL_VERIFYHOST, false); if (!empty($data)) { curl_setopt($curl, CURLOPT_POST, 1); curl_setopt($curl, CURLOPT_POSTFIELDS, $data); } curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1); $info = curl_exec($curl); curl_close($curl); return $info; }
以上就是解决file_get_contents返回false的方法的详细内容,更多请关注其它相关文章!
推荐阅读
-
【翻译自mos文章】job不能自动执行的解决方法
-
PHP文件生成的图片无法使用CDN缓存的解决方法,_PHP教程
-
正则的模式修正符“e”的作用解决方法
-
安装SQL2008时提示删除SQL2005Express工具的解决方法
-
Serv_U 安全设置以后出现530 Not logged in, home directory does not exist的解决方法
-
fgetcsv函数不能读取csv文件中文字符串的解决方法
-
Incorrect syntax near the keyword 'user'错误的解决方法
-
很简单的一个页面、出现乱码解决方法
-
MySQL一些查询的解决方法_MySQL
-
Notice: Undefined offset 的解决方法,noticeundefined