一聚教程网:一个值得你收藏的教程网站

最新下载

热门教程

file_get_contents 中文路径报错问题解决

时间:2016-01-10 编辑:简简单单 来源:一聚教程网

解决file_get_contents遇到中文文件名无法打开问题

比如:受访页面_20151202-20151202.csv

file_get_contents(受访页面_20151202-20151202.csv)就会报错

[function.file-get-contents]: failed to open stream: No such file or directory

改成不用包含中文的文件名路径就可以。

原因:

编码问题,Windows中是使用gbk中文编码的,而PHP文件一般都是用utf-8格式保存的了。中文地址获取之前做一次iconv('utf-8', 'gbk', $path)就没有问题了。

    $path='/baidu/受访页面_20151203-20151203.csv';
    $path=iconv('utf-8', 'gbk', $path);
    $content=  file_get_contents($path);
    echo $content;
?>

热门栏目