mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2025-04-05 19:41:44 +08:00
ComposerUpdate
This commit is contained in:
parent
85ab26b93f
commit
4f2f80e504
12
vendor/composer/installed.json
vendored
12
vendor/composer/installed.json
vendored
@ -460,17 +460,17 @@
|
||||
},
|
||||
{
|
||||
"name": "zoujingli/wechat-developer",
|
||||
"version": "v1.2.23",
|
||||
"version_normalized": "1.2.23.0",
|
||||
"version": "v1.2.24",
|
||||
"version_normalized": "1.2.24.0",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/zoujingli/WeChatDeveloper.git",
|
||||
"reference": "f070dd076a4137ff4e86600b63d1ccfe2f744a92"
|
||||
"reference": "2e5ca0d48fca8014eea504db6daec2b97d53d768"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/zoujingli/WeChatDeveloper/zipball/f070dd076a4137ff4e86600b63d1ccfe2f744a92",
|
||||
"reference": "f070dd076a4137ff4e86600b63d1ccfe2f744a92",
|
||||
"url": "https://api.github.com/repos/zoujingli/WeChatDeveloper/zipball/2e5ca0d48fca8014eea504db6daec2b97d53d768",
|
||||
"reference": "2e5ca0d48fca8014eea504db6daec2b97d53d768",
|
||||
"shasum": "",
|
||||
"mirrors": [
|
||||
{
|
||||
@ -490,7 +490,7 @@
|
||||
"ext-xml": "*",
|
||||
"php": ">=5.4"
|
||||
},
|
||||
"time": "2020-07-20T06:55:26+00:00",
|
||||
"time": "2020-08-16T07:01:12+00:00",
|
||||
"type": "library",
|
||||
"installation-source": "dist",
|
||||
"autoload": {
|
||||
|
4
vendor/zoujingli/wechat-developer/We.php
vendored
4
vendor/zoujingli/wechat-developer/We.php
vendored
@ -86,7 +86,7 @@ class We
|
||||
* 定义当前版本
|
||||
* @var string
|
||||
*/
|
||||
const VERSION = '1.2.23';
|
||||
const VERSION = '1.2.24';
|
||||
|
||||
/**
|
||||
* 静态配置
|
||||
@ -136,4 +136,4 @@ class We
|
||||
throw new InvalidInstanceException("class {$name} not found");
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
@ -360,6 +360,11 @@ class Tools
|
||||
$mycurl = new MyCurlFile((array)$value);
|
||||
$data[$key] = $mycurl->get();
|
||||
array_push(self::$cache_curl, $mycurl->tempname);
|
||||
} elseif (is_array($value) && isset($value['datatype']) && $value['datatype'] === 'MY_CURL_FILE') {
|
||||
$build = false;
|
||||
$mycurl = new MyCurlFile($value);
|
||||
$data[$key] = $mycurl->get();
|
||||
array_push(self::$cache_curl, $mycurl->tempname);
|
||||
} elseif (is_string($value) && class_exists('CURLFile', false) && stripos($value, '@') === 0) {
|
||||
if (($filename = realpath(trim($value, '@'))) && file_exists($filename)) {
|
||||
$build = false;
|
||||
@ -458,4 +463,4 @@ class Tools
|
||||
file_exists(self::$cache_path) || mkdir(self::$cache_path, 0755, true);
|
||||
return self::$cache_path . $name;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -73,8 +73,9 @@ class Newtmpl extends BasicWeChat
|
||||
public function getPubTemplateTitleList($ids)
|
||||
{
|
||||
$url = 'https://api.weixin.qq.com/wxaapi/newtmpl/getpubtemplatetitles?access_token=ACCESS_TOKEN';
|
||||
$url .= '&' . http_build_query(['ids' => $ids, 'start' => '0', 'limit' => '30']);
|
||||
$this->registerApi($url, __FUNCTION__, func_get_args());
|
||||
return $this->callPostApi($url, ['ids' => $ids, 'start' => '0', 'limit' => '30'], true);
|
||||
return $this->callGetApi($url);
|
||||
}
|
||||
|
||||
/**
|
||||
@ -87,8 +88,9 @@ class Newtmpl extends BasicWeChat
|
||||
public function getPubTemplateKeyWordsById($tid)
|
||||
{
|
||||
$url = 'https://api.weixin.qq.com/wxaapi/newtmpl/getpubtemplatekeywords?access_token=ACCESS_TOKEN';
|
||||
$url .= '&' . http_build_query(['tid' => $tid]);
|
||||
$this->registerApi($url, __FUNCTION__, func_get_args());
|
||||
return $this->callPostApi($url, ['tid' => $tid], true);
|
||||
return $this->callGetApi($url);
|
||||
}
|
||||
|
||||
/**
|
||||
@ -117,7 +119,7 @@ class Newtmpl extends BasicWeChat
|
||||
{
|
||||
$url = 'https://api.weixin.qq.com/wxaapi/newtmpl/gettemplate?access_token=ACCESS_TOKEN';
|
||||
$this->registerApi($url, __FUNCTION__, func_get_args());
|
||||
return $this->callPostApi($url, [], true);
|
||||
return $this->callGetApi($url);
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -28,10 +28,9 @@ try {
|
||||
$result = $pay->apply([
|
||||
'out_trade_no' => time(), // 商户订单号
|
||||
'total_amount' => '1', // 支付金额
|
||||
'subject' => 'test subject', // 支付订单描述
|
||||
'subject' => '支付宝订单标题', // 支付订单描述
|
||||
]);
|
||||
echo '<pre>';
|
||||
var_export($result);
|
||||
echo $result;
|
||||
} catch (\Exception $e) {
|
||||
echo $e->getMessage();
|
||||
}
|
||||
|
@ -26,7 +26,7 @@ try {
|
||||
|
||||
// 请参考(请求参数):https://docs.open.alipay.com/api_15/alipay.data.dataservice.bill.downloadurl.query
|
||||
$result = $pay->apply([
|
||||
'bill_date' => '2018-10-03', // 账单时间(日账单yyyy-MM-dd,月账单 yyyy-MM)
|
||||
'bill_date' => '2020-07-03', // 账单时间(日账单yyyy-MM-dd,月账单 yyyy-MM)
|
||||
'bill_type' => 'signcustomer', // 账单类型(trade指商户基于支付宝交易收单的业务账单,signcustomer是指基于商户支付宝余额收入及支出等资金变动的帐务账单)
|
||||
]);
|
||||
echo '<pre>';
|
||||
|
Loading…
x
Reference in New Issue
Block a user