作者 lihan
1 个管道 的构建 通过 耗费 0 秒

支付宝

... ... @@ -164,11 +164,12 @@ class IndexController extends HomeBaseController
public function alipay()
{
require_once EXTEND_PATH . '/alipay/wappay/service/AlipayTradeService.php';
$alipay = new \AlipayTradeService();
$alipay_config = [];
$alipay = new \AlipayTradeService($alipay_config);
$builder = [
'oid' => 2
];
$return = $alipay->test();
$return = $alipay->wapPay($builder, '', '');
print_r($return);
}
... ...
... ... @@ -64,10 +64,6 @@ class AlipayTradeService {
$this->__construct($alipay_config);
}
function test() {
echo 12;
}
/**
* alipay.trade.wap.pay
* @param $builder 业务参数,使用buildmodel中的对象生成。
... ...