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);
|
$mycurl = new MyCurlFile((array)$value);
|
||||||
$data[$key] = $mycurl->get();
|
$data[$key] = $mycurl->get();
|
||||||
array_push(self::$cache_curl, $mycurl->tempname);
|
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) {
|
} 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;
|
||||||
@ -458,4 +463,4 @@ class Tools
|
|||||||
file_exists(self::$cache_path) || mkdir(self::$cache_path, 0755, true);
|
file_exists(self::$cache_path) || mkdir(self::$cache_path, 0755, true);
|
||||||
return self::$cache_path . $name;
|
return self::$cache_path . $name;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user