为了账号安全,请及时绑定邮箱和手机立即绑定

正在回答

1 回答

function http_curl($url,$type='get',$res='json',$arr=''){

        //1,初始化curl

        $ch = curl_init();

        //2,设置 curl的参数

        curl_setopt($ch, CURLOPT_URL, $url);

        curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);

        if ($type == 'post') {

            curl_setopt($ch, CURLOPT_POST, $url);

            curl_setopt($ch, CURLOPT_POSTFIELDS, $arr);

        }

        //3,采集

        $output = curl_exec($ch);

        //4,关闭

        curl_close($ch);

        if ($res == 'json') {

            if ( curl_errno($ch) ) {

                return curl_error($ch);

            }else{

                return json_decode($output,true);

            }

        }

    }


0 回复 有任何疑惑可以回复我~
#1

弹吉他的牛儿

post后面跟的不是url吧
2016-10-26 回复 有任何疑惑可以回复我~
#2

qq_心安_3 提问者

非常感谢!
2016-11-21 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

报错啦thinkphp

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信