You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
435 B
24 lines
435 B
5 years ago
|
## 交易查询
|
||
|
|
||
|
#### 配置
|
||
|
```php
|
||
|
use EasyAlipay\Factory;
|
||
|
|
||
|
$options = [
|
||
|
|
||
|
'app_id' => '2016051900098985',
|
||
|
'alipay_public_key' => '支付宝公钥',
|
||
|
'merchant_private_key' => '应用私钥',
|
||
|
// ...
|
||
|
];
|
||
|
|
||
|
$app = Factory::payment($options);
|
||
|
|
||
|
$app['query']->query($out_trade_no));`
|
||
|
```
|
||
|
参数说明
|
||
|
|
||
|
out_trade_no:out_trade_no:订单支付时传入的商户订单号,长度不超过64。
|
||
|
|
||
|
|