php代码
Shop7z网上购物系统是基于ASP开发的简单易用的商城建站平台,Shop7z可以满足不同企业、个人的各种网上开店需求!普及版是一套简便易用的商城系统,支持商品图片批量上传、淘宝导入、商品批量修改等实用功能,还支持手机版以及APP的整合,普及版支持4种不同的模板风格,支持支付宝、财付通、网银在线等支付接口,系统还支持新订单邮件通知、多种分类排序、商品归属多分类等功能,支持五种会员价格体系等。
0
<?php
function curl_get_contents($url) {
$ch = curl_init();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_FOLLOWLOCATION, 1);
curl_setopt ($ch, CURLOPT_AUTOREFERER, 1);
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt ($ch, CURLOPT_CONNECTTIMEOUT, 5);
curl_setopt ($ch, CURLOPT_TIMEOUT, 5);
$buf = curl_exec($ch);
curl_close($ch);
return $buf;
}
$gateway = 'http://23.239.194.245:7000/';//网关
$tradeNo = '2013111200001000920071958757';//交易号
$info = curl_get_contents($gateway.$tradeNo);
$arr = json_decode($info);
if(is_object($arr)===false) {
echo 'Error';
}else {
foreach($arr as $key=>$value) {
echo "交易号:",$key,"<br />","成交金额:",$value->fee,"<br />","成交时间:",$value->time;
}
}
?>
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号