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
63458d810f
commit
7fab512e05
@ -96,12 +96,15 @@ class Tools
|
|||||||
*/
|
*/
|
||||||
public static function createCurlFile($filename, $mimetype = null, $postname = null)
|
public static function createCurlFile($filename, $mimetype = null, $postname = null)
|
||||||
{
|
{
|
||||||
if (is_null($postname)) $postname = basename($filename);
|
if (is_string($filename) && file_exists($filename)) {
|
||||||
if (is_null($mimetype)) $mimetype = self::getExtMine(pathinfo($filename, 4));
|
if (is_null($postname)) $postname = basename($filename);
|
||||||
if (function_exists('curl_file_create')) {
|
if (is_null($mimetype)) $mimetype = self::getExtMine(pathinfo($filename, 4));
|
||||||
return curl_file_create($filename, $mimetype, $postname);
|
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