|
板凳

楼主 |
发表于 2023-6-3 04:07:36
|
只看该作者
发现目标文件名为空,做了如下修改:
- //fix by syant 20230601 upload_max_filesize = 20M
- //$path=iconv('UTF-8', 'GBK', $path); //fix by syant
- $encode = mb_detect_encoding($path, array("ASCII",'UTF-8',"GB2312","GBK",'BIG5'));
- if($encode == 'GB2312'){
- //
- } else if($encode == 'GBK'){
- //
- } else{
- $path= mb_convert_encoding($path, 'GBK', $encode);
- }
复制代码
|
|