增加新版支付打款接口

This commit is contained in:
Anyon 2020-03-02 19:08:34 +08:00
parent 01fa1479e8
commit 418e132e3e
5 changed files with 161 additions and 2 deletions

View File

@ -35,7 +35,7 @@ class Transfer extends BasicAliPay
}
/**
* 创建数据操作
* 旧版 向指定支付宝账户转账
* @param array $options
* @return mixed
* @throws \WeChat\Exceptions\InvalidResponseException
@ -45,4 +45,44 @@ class Transfer extends BasicAliPay
{
return $this->getResult($options);
}
/**
* 新版 向指定支付宝账户转账
* @param array $options
* @return array|bool
* @throws \WeChat\Exceptions\InvalidResponseException
* @throws \WeChat\Exceptions\LocalCacheException
*/
public function create($options = [])
{
$this->options->set('method', 'alipay.fund.trans.uni.transfer');
return $this->getResult($options);
}
/**
* 新版 转账业务单据查询接口
* @param array $options
* @return array|bool
* @throws \WeChat\Exceptions\InvalidResponseException
* @throws \WeChat\Exceptions\LocalCacheException
*/
public function queryResult($options = [])
{
$this->options->set('method', 'alipay.fund.trans.common.query');
return $this->getResult($options);
}
/**
* 新版 支付宝资金账户资产查询接口
* @param array $options
* @return array|bool
* @throws \WeChat\Exceptions\InvalidResponseException
* @throws \WeChat\Exceptions\LocalCacheException
*/
public function queryAccount($options = [])
{
$this->options->set('method', 'alipay.fund.account.query');
return $this->getResult($options);
}
}

2
We.php
View File

@ -81,7 +81,7 @@ class We
* 定义当前版本
* @var string
*/
const VERSION = '1.2.13';
const VERSION = '1.2.17';
/**
* 静态配置

View File

@ -0,0 +1,37 @@
<?php
// +----------------------------------------------------------------------
// | WeChatDeveloper
// +----------------------------------------------------------------------
// | 版权所有 2014~2018 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
// +----------------------------------------------------------------------
// | 官方网站: http://think.ctolog.com
// +----------------------------------------------------------------------
// | 开源协议 ( https://mit-license.org )
// +----------------------------------------------------------------------
// | github开源项目https://github.com/zoujingli/WeChatDeveloper
// +----------------------------------------------------------------------
// 1. 手动加载入口文件
include "../include.php";
// 2. 准备公众号配置参数
$config = include "./alipay.php";
try {
// 实例支付对象
// $pay = We::AliPayTransfer($config);
// $pay = new \AliPay\Transfer($config);
$pay = \AliPay\Transfer::instance($config);
// 参考链接https://docs.open.alipay.com/api_28/alipay.fund.account.query/
$result = $pay->queryAccount([
'alipay_user_id' => $config['appid'], // 订单号
'account_scene_code' => 'SCENE_000_000_000',
]);
echo '<pre>';
var_export($result);
} catch (Exception $e) {
echo $e->getMessage();
}

View File

@ -0,0 +1,44 @@
<?php
// +----------------------------------------------------------------------
// | WeChatDeveloper
// +----------------------------------------------------------------------
// | 版权所有 2014~2018 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
// +----------------------------------------------------------------------
// | 官方网站: http://think.ctolog.com
// +----------------------------------------------------------------------
// | 开源协议 ( https://mit-license.org )
// +----------------------------------------------------------------------
// | github开源项目https://github.com/zoujingli/WeChatDeveloper
// +----------------------------------------------------------------------
// 1. 手动加载入口文件
include "../include.php";
// 2. 准备公众号配置参数
$config = include "./alipay.php";
try {
// 实例支付对象
// $pay = We::AliPayTransfer($config);
// $pay = new \AliPay\Transfer($config);
$pay = \AliPay\Transfer::instance($config);
// 参考链接https://docs.open.alipay.com/api_28/alipay.fund.trans.uni.transfer/
$result = $pay->create([
'out_biz_no' => time(), // 订单号
'trans_amount' => '10', // 转账金额
'product_code' => 'TRANS_ACCOUNT_NO_PWD',
'biz_scene' => 'DIRECT_TRANSFER',
'payee_info' => [
'identity' => 'zoujingli@qq.com',
'identity_type' => 'ALIPAY_LOGON_ID',
'name' => '邹景立',
],
]);
echo '<pre>';
var_export($result);
} catch (Exception $e) {
echo $e->getMessage();
}

View File

@ -0,0 +1,38 @@
<?php
// +----------------------------------------------------------------------
// | WeChatDeveloper
// +----------------------------------------------------------------------
// | 版权所有 2014~2018 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
// +----------------------------------------------------------------------
// | 官方网站: http://think.ctolog.com
// +----------------------------------------------------------------------
// | 开源协议 ( https://mit-license.org )
// +----------------------------------------------------------------------
// | github开源项目https://github.com/zoujingli/WeChatDeveloper
// +----------------------------------------------------------------------
// 1. 手动加载入口文件
include "../include.php";
// 2. 准备公众号配置参数
$config = include "./alipay.php";
try {
// 实例支付对象
// $pay = We::AliPayTransfer($config);
// $pay = new \AliPay\Transfer($config);
$pay = \AliPay\Transfer::instance($config);
// 参考链接https://docs.open.alipay.com/api_28/alipay.fund.trans.common.query/
$result = $pay->queryResult([
'out_biz_no' => '201808080001', // 订单号
'product_code' => 'TRANS_ACCOUNT_NO_PWD',
'biz_scene' => 'DIRECT_TRANSFER',
]);
echo '<pre>';
var_export($result);
} catch (Exception $e) {
echo $e->getMessage();
}