Update Tools.php

修改接口兼容
This commit is contained in:
邹景立 2020-08-16 14:59:53 +08:00 committed by GitHub
parent 2308c9fb32
commit fe3b5910ba
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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;
} }
} }