zoukankan      html  css  js  c++  java
  • php采用file_get_contents代替使用curl实例 微信登录时不能使用curl_exec 函数

    其实这个问题也困扰了我很久!花了一上午的时间进行排查!

    最终发现ecshop的小京东模板 后台在阿里云的虚拟主机下不能使用 curl_exec 函数! 也不是不能使用,但是每次代码运行到这里的时候就会出现

    服务器不能正常相应的事件!如错误代码:Internet service error  然后就让我们查看日志的操作!我们需要在用到了curl get 和curl post 的地方用file_get_contents函数来代替

    就不会出现那样的错误了!具体操作如下

    curl get 替代 直接用file_get_contents($url) 就可以了

    curl post 替代如下:

    function Post($url, $post = null) {       
            $content = http_build_query($post);
            $content_length = strlen($content);
            $options = array(
                'http' => array(
                    'method' => 'POST',
                    'header' =>"Content-type: application/x-www-form-urlencoded",
                    'content' => $post
                )
            );
            return file_get_contents($url, false, stream_context_create($options));
    }

     

    php采用file_get_contents代替使用curl实例

    curl 经常使用的 curl get curl post
    curl get 替代 直接用file_get_contents($url) 就可以了
    curl post 替代如下:

     代码如下:
    function Post($url, $post = null) {      
            $content = http_build_query($post);
            $content_length = strlen($content);
            $options = array(
                'http' => array(
                    'method' => 'POST',
                    'header' =>"Content-type: application/x-www-form-urlencoded",
                    'content' => $post
                )
            );
            return file_get_contents($url, false, stream_context_create($options));
    }

    希望本文所述对大家的php程序设计有所帮助。

  • 相关阅读:
    openCV的imread()函数
    python 文件操作(open函数)
    opencv函数解析
    python face_reconnition库函数解析
    python—OpenCV2中 cv2.VideoCapture(),read(),waitKey()的使用
    数据结构之各排序算法
    C语言格式符
    利用函数对数组排序,是否会修改原数组
    保研夏令营证书扫描工具推荐
    一些小技巧
  • 原文地址:https://www.cnblogs.com/keli/p/7262954.html
Copyright © 2011-2022 走看看