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程序设计有所帮助。

转载于:https://www.cnblogs.com/keli/p/7262954.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值