码迷,mamicode.com
首页 > Web开发 > 详细

thinkphp中curl的使用,常用于接口

时间:2014-09-21 21:15:11      阅读:233      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   io   os   使用   div   sp   

/lib/action/PublicAction.class.php

class PublicAction extends Action{
//curl,返回数组
    public function get_curl_json($url){
        $ch = curl_init();
        curl_setopt($ch, CURLOPT_URL, $url);
        curl_setopt($ch, CURLOPT_RETURNTRANSFER,true);
        $result = curl_exec($ch);
        if(curl_errno($ch)){
            print_r(curl_error($ch));
        }
        curl_close($ch);
        return json_decode($result,TRUE);
    }
}

/lib/action/GameAction.class.php

$usage="http://api.xxx.com/xxx/pay.php?username=".$username."&pid=".$pid."&server=".$server."&time=".$time."&domain=".$domain."&money=".$money."&order=".$order."&sign=".$sign;
        $Public = A("Public");
        $data = $Public->get_curl_json($usage);
        $retCode = $data["orderid"];

 

thinkphp中curl的使用,常用于接口

标签:style   blog   http   color   io   os   使用   div   sp   

原文地址:http://www.cnblogs.com/walter371/p/3984829.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!