默认去除 Emoji 表情处理,请把数据库转为 utf8mb4

This commit is contained in:
Anyon 2020-08-31 11:44:38 +08:00
parent 6fcb650490
commit 0d8e889a47
3 changed files with 11 additions and 8 deletions

2
We.php
View File

@ -86,7 +86,7 @@ class We
* 定义当前版本
* @var string
*/
const VERSION = '1.2.25';
const VERSION = '1.2.26';
/**
* 静态配置

View File

@ -39,7 +39,7 @@ class MyCurlFile extends \stdClass
}
/**
* 获取文件信息
* 获取文件上传信息
* @return \CURLFile|string
* @throws \WeChat\Exceptions\LocalCacheException
*/
@ -48,12 +48,14 @@ class MyCurlFile extends \stdClass
$this->filename = Tools::pushFile($this->tempname, base64_decode($this->content));
if (class_exists('CURLFile')) {
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()
{

View File

@ -110,10 +110,11 @@ class Tools
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);
if (class_exists('CURLFile')) {
return new \CURLFile($filename, $mimetype, $postname);
} else {
return "@{$filename};filename={$postname};type={$mimetype}";
}
return "@{$filename};filename={$postname};type={$mimetype}";
}
return $filename;
}
@ -182,7 +183,7 @@ class Tools
*/
public static function arr2json($data)
{
$json = json_encode(self::buildEnEmojiData($data), JSON_UNESCAPED_UNICODE);
$json = json_encode($data, JSON_UNESCAPED_UNICODE);
return $json === '[]' ? '{}' : $json;
}