查询汇率
优质
小牛编辑
136浏览
2023-12-01
说明
微信支付-查询汇率SDK。
官方文档:https://pay.weixin.qq.com/wiki/doc/api/external/micropay.php?chapter=9_15&index=8
类
请求参数类
请求参数
类名:\Yurun\PaySDK\Weixin\ExchageRate\Request
属性
名称 | 类型 | 说明 |
---|---|---|
$_apiMethod | string | 接口名称 |
$sub_mch_id | string | 微信支付分配的子商户号 |
$fee_type | string | 外币币种,详情见https://pay.weixin.qq.com/wiki/doc/api/external/native.php?chapter=4_2 |
$date | string | 日期,格式为yyyyMMdd |
$needAppID | boolean | 参数中是否需要带有app_id |
$needMchID | boolean | 参数中是否需要带有mch_id |
$needSignType | boolean | 参数中是否需要带有sign_type |
$signType | string | 签名类型,为null时使用publicParams设置 |
$needNonceStr | boolean | 参数中是否需要带有nonce_str |
$allowReport | boolean | 是否允许上报 |
$_method | string | 接口请求方法 |
$_isSyncVerify | boolean | 是否同步返回验证 |
简单使用
// SDK实例化,传入公共配置
$sdk = new \Yurun\PaySDK\Weixin\SDK($params);
$request = new \Yurun\PaySDK\Weixin\ExchageRate\Request;
$request->fee_type = 'USD'; // 这里是美元,你可以改为你想要查询的货币代码
$request->date = '20170101';
$result = $sdk->execute($request);
var_dump('result:', $result);
var_dump('success:', $sdk->checkResult());
var_dump('error:', $sdk->getError(), 'error_code:', $sdk->getErrorCode());
详见:test/Weixin/exchage_rate.php