欢迎来到天天文库
浏览记录
ID:12538423
大小:206.50 KB
页数:6页
时间:2018-07-17
《基于php的游戏充值接口调用代码实例》由会员上传分享,免费在线阅读,更多相关内容在行业资料-天天文库。
1、基于php的游戏充值接口调用代码实例代码描述:基于php的游戏充值接口调用代码实例代码平台:聚合数据//+---------------------------------------------------------------------- //----------------------------------//游戏充
6、值调用示例代码-聚合数据//在线接口文档:http://www.juhe.cn/docs/88//---------------------------------- header('Content-type:text/html;charset=utf-8'); //配置您申请的appkey$appkey="*********************"; //************1.商品小类列表************$url="http://op.juhe.cn/ofpay/game/
7、cardlist";$params=array( "key"=>$appkey,//应用APPKEY(应用详细页查询));$paramstring=http_build_query($params);$content=juhecurl($url,$paramstring);$result=json_decode($content,true);if($result){ if($result['error_code']=='0'){ print_r($result);
8、 }else{ echo$result['error_code'].":".$result['reason']; }}else{ echo"请求失败";}//************************************************** //************2.商品信息************$url="http://op.juhe.cn/ofpay/game/cardinfo";$params=array( "cardid"=
9、>"",//对应接口1的cardid "key"=>$appkey,//应用APPKEY(应用详细页查询));$paramstring=http_build_query($params);$content=juhecurl($url,$paramstring);$result=json_decode($content,true);if($result){ if($result['error_code']=='0'){ print_r($result); }else
10、{ echo$result['error_code'].":".$result['reason']; }}else{ echo"请求失败";}//************************************************** //************3.商品价格查询************$url="http://op.juhe.cn/ofpay/game/cardprice";$params=array( "cardid"=>""
11、,//对应接口2的cardid "key"=>$appkey,//应用APPKEY(应用详细页查询));$paramstring=http_build_query($params);$content=juhecurl($url,$paramstring);$result=json_decode($content,true);if($result){ if($result['error_code']=='0'){ print_r($resu
此文档下载收益归作者所有