mirror of
https://gitee.com/zoujingli/WeChatDeveloper.git
synced 2025-04-06 03:58:03 +08:00
[更新]修改兼容代码
This commit is contained in:
parent
9587b125b8
commit
9e11720287
@ -93,6 +93,7 @@ abstract class BasicAliPay
|
|||||||
* @param string $out_trade_no
|
* @param string $out_trade_no
|
||||||
* @return array|boolean
|
* @return array|boolean
|
||||||
* @throws InvalidResponseException
|
* @throws InvalidResponseException
|
||||||
|
* @throws \WeChat\Exceptions\LocalCacheException
|
||||||
*/
|
*/
|
||||||
public function query($out_trade_no = '')
|
public function query($out_trade_no = '')
|
||||||
{
|
{
|
||||||
@ -106,6 +107,7 @@ abstract class BasicAliPay
|
|||||||
* @param null $refund_amount 退款金额
|
* @param null $refund_amount 退款金额
|
||||||
* @return array|boolean
|
* @return array|boolean
|
||||||
* @throws InvalidResponseException
|
* @throws InvalidResponseException
|
||||||
|
* @throws \WeChat\Exceptions\LocalCacheException
|
||||||
*/
|
*/
|
||||||
public function refund($options, $refund_amount = null)
|
public function refund($options, $refund_amount = null)
|
||||||
{
|
{
|
||||||
@ -119,6 +121,7 @@ abstract class BasicAliPay
|
|||||||
* @param array|string $options
|
* @param array|string $options
|
||||||
* @return array|boolean
|
* @return array|boolean
|
||||||
* @throws InvalidResponseException
|
* @throws InvalidResponseException
|
||||||
|
* @throws \WeChat\Exceptions\LocalCacheException
|
||||||
*/
|
*/
|
||||||
public function close($options)
|
public function close($options)
|
||||||
{
|
{
|
||||||
@ -210,6 +213,7 @@ abstract class BasicAliPay
|
|||||||
* @param array $options
|
* @param array $options
|
||||||
* @return array|boolean
|
* @return array|boolean
|
||||||
* @throws InvalidResponseException
|
* @throws InvalidResponseException
|
||||||
|
* @throws \WeChat\Exceptions\LocalCacheException
|
||||||
*/
|
*/
|
||||||
protected function getResult($options)
|
protected function getResult($options)
|
||||||
{
|
{
|
||||||
|
@ -274,8 +274,9 @@ class Tools
|
|||||||
$build = false;
|
$build = false;
|
||||||
} elseif (is_object($value) && isset($value->datatype) && $value->datatype === 'MY_CURL_FILE') {
|
} elseif (is_object($value) && isset($value->datatype) && $value->datatype === 'MY_CURL_FILE') {
|
||||||
$build = false;
|
$build = false;
|
||||||
$data[$key] = ($myCurlFile = new MyCurlFile((array)$value))->get();
|
$mycurl = new MyCurlFile((array)$value);
|
||||||
array_push(self::$cache_curl, $myCurlFile->tempname);
|
$data[$key] = $mycurl->get();
|
||||||
|
array_push(self::$cache_curl, $mycurl->tempname);
|
||||||
} elseif (is_string($value) && class_exists('CURLFile', false) && stripos($value, '@') === 0) {
|
} elseif (is_string($value) && class_exists('CURLFile', false) && stripos($value, '@') === 0) {
|
||||||
if (($filename = realpath(trim($value, '@'))) && file_exists($filename)) {
|
if (($filename = realpath(trim($value, '@'))) && file_exists($filename)) {
|
||||||
$build = false;
|
$build = false;
|
||||||
|
@ -30,7 +30,8 @@ class Bill extends BasicWePay
|
|||||||
* @param array $options 静音参数
|
* @param array $options 静音参数
|
||||||
* @param null|string $outType 输出类型
|
* @param null|string $outType 输出类型
|
||||||
* @return bool|string
|
* @return bool|string
|
||||||
* @throws \WeChat\Exceptions\InvalidResponseException
|
* @throws InvalidResponseException
|
||||||
|
* @throws \WeChat\Exceptions\LocalCacheException
|
||||||
*/
|
*/
|
||||||
public function download(array $options, $outType = null)
|
public function download(array $options, $outType = null)
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user