mirror of
https://gitee.com/zoujingli/WeChatDeveloper.git
synced 2025-04-05 19:41:44 +08:00
Update Tools.php
This commit is contained in:
parent
63458d810f
commit
7fab512e05
@ -96,12 +96,15 @@ class Tools
|
||||
*/
|
||||
public static function createCurlFile($filename, $mimetype = null, $postname = null)
|
||||
{
|
||||
if (is_null($postname)) $postname = basename($filename);
|
||||
if (is_null($mimetype)) $mimetype = self::getExtMine(pathinfo($filename, 4));
|
||||
if (function_exists('curl_file_create')) {
|
||||
return curl_file_create($filename, $mimetype, $postname);
|
||||
if (is_string($filename) && file_exists($filename)) {
|
||||
if (is_null($postname)) $postname = basename($filename);
|
||||
if (is_null($mimetype)) $mimetype = self::getExtMine(pathinfo($filename, 4));
|
||||
if (function_exists('curl_file_create')) {
|
||||
return curl_file_create($filename, $mimetype, $postname);
|
||||
}
|
||||
return "@{$filename};filename={$postname};type={$mimetype}";
|
||||
}
|
||||
return "@{$filename};filename={$postname};type={$mimetype}";
|
||||
return $filename;
|
||||
}
|
||||
|
||||
/**
|
||||
|
Loading…
x
Reference in New Issue
Block a user