解决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)就没有问题了。
- <?php
- $path='/baidu/受访页面_20151203-20151203.csv';
- $path=iconv('utf-8', 'gbk', $path);
- $content= file_get_contents($path);
- echo $content;
- ?>
新闻热点
疑难解答