PHP 如果要打开的文件名包含中文那么会报错
PHP 如果要打开的文件名包含中文那么会报错
使用iconv不行
$file_read = "C:/中国.txt";
$file_read = iconv('utf-8', 'gb2312', $file_read);
会报
iconv() [function.iconv]: Detected an illegal character in input string
求教如何解决。
------解决方案--------------------
LZ PHP什么版本? 我的5.2 运行你的代码不会报错哦
错误是说 你要转换的字符串还有非法字符。你看下是哪个用'\'转义试试?
------解决方案--------------------
echo iconv('utf-8', 'gb2312//IGNORE', $file_read);
与原串对比一下少了什么