mirror of
https://gitee.com/zoujingli/WeChatDeveloper.git
synced 2025-04-06 03:58:03 +08:00
默认去除 Emoji 表情处理,请把数据库转为 utf8mb4
This commit is contained in:
parent
6fcb650490
commit
0d8e889a47
2
We.php
2
We.php
@ -86,7 +86,7 @@ class We
|
|||||||
* 定义当前版本
|
* 定义当前版本
|
||||||
* @var string
|
* @var string
|
||||||
*/
|
*/
|
||||||
const VERSION = '1.2.25';
|
const VERSION = '1.2.26';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 静态配置
|
* 静态配置
|
||||||
|
@ -39,7 +39,7 @@ class MyCurlFile extends \stdClass
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 获取文件信息
|
* 获取文件上传信息
|
||||||
* @return \CURLFile|string
|
* @return \CURLFile|string
|
||||||
* @throws \WeChat\Exceptions\LocalCacheException
|
* @throws \WeChat\Exceptions\LocalCacheException
|
||||||
*/
|
*/
|
||||||
@ -48,12 +48,14 @@ class MyCurlFile extends \stdClass
|
|||||||
$this->filename = Tools::pushFile($this->tempname, base64_decode($this->content));
|
$this->filename = Tools::pushFile($this->tempname, base64_decode($this->content));
|
||||||
if (class_exists('CURLFile')) {
|
if (class_exists('CURLFile')) {
|
||||||
return new \CURLFile($this->filename, $this->mimetype, $this->postname);
|
return new \CURLFile($this->filename, $this->mimetype, $this->postname);
|
||||||
}
|
} else {
|
||||||
return "@{$this->tempname};filename={$this->postname};type={$this->mimetype}";
|
return "@{$this->tempname};filename={$this->postname};type={$this->mimetype}";
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 类销毁处理
|
* 通用销毁函数清理缓存文件
|
||||||
|
* 提前删除过期因此放到了网络请求之后
|
||||||
*/
|
*/
|
||||||
public function __destruct()
|
public function __destruct()
|
||||||
{
|
{
|
||||||
|
@ -110,11 +110,12 @@ class Tools
|
|||||||
if (is_string($filename) && file_exists($filename)) {
|
if (is_string($filename) && file_exists($filename)) {
|
||||||
if (is_null($postname)) $postname = basename($filename);
|
if (is_null($postname)) $postname = basename($filename);
|
||||||
if (is_null($mimetype)) $mimetype = self::getExtMine(pathinfo($filename, 4));
|
if (is_null($mimetype)) $mimetype = self::getExtMine(pathinfo($filename, 4));
|
||||||
if (function_exists('curl_file_create')) {
|
if (class_exists('CURLFile')) {
|
||||||
return curl_file_create($filename, $mimetype, $postname);
|
return new \CURLFile($filename, $mimetype, $postname);
|
||||||
}
|
} else {
|
||||||
return "@{$filename};filename={$postname};type={$mimetype}";
|
return "@{$filename};filename={$postname};type={$mimetype}";
|
||||||
}
|
}
|
||||||
|
}
|
||||||
return $filename;
|
return $filename;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -182,7 +183,7 @@ class Tools
|
|||||||
*/
|
*/
|
||||||
public static function arr2json($data)
|
public static function arr2json($data)
|
||||||
{
|
{
|
||||||
$json = json_encode(self::buildEnEmojiData($data), JSON_UNESCAPED_UNICODE);
|
$json = json_encode($data, JSON_UNESCAPED_UNICODE);
|
||||||
return $json === '[]' ? '{}' : $json;
|
return $json === '[]' ? '{}' : $json;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user