mirror of
https://gitee.com/zoujingli/WeChatDeveloper.git
synced 2025-04-06 03:58:03 +08:00
Update Tools.php
修改接口兼容
This commit is contained in:
parent
2308c9fb32
commit
fe3b5910ba
@ -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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user