php的file_get_contents的问题,很奇怪,不知道怎么解决!
程序员文章站
2024-01-15 11:18:40
...
在使用file_get_contents时,出现奇怪的问题。
如果使用如下代码,可以运行:
$ff = "c:\\mywww\\www.bin3d.cn\\temp_upload\\files\\xxxx.txt";
echo file_get_contents($ff);
但是,如果是下面的代码就出现错误信息:
$file = "xxxx.txt";
$ff = "c:\\mywww\\www.bin3d.cn\\temp_upload\\files\\".$file."";
echo file_get_contents($ff);
错误信息是:
Warning:
file_get_contents(c:\mywww\www.xxx.cn\temp_upload\files\xxxx.txt):
failed to open stream: No such file or directory in....
请问是什么问题呢?好烦人啊
回复内容:
在使用file_get_contents时,出现奇怪的问题。
如果使用如下代码,可以运行:
$ff = "c:\\mywww\\www.bin3d.cn\\temp_upload\\files\\xxxx.txt";
echo file_get_contents($ff);
但是,如果是下面的代码就出现错误信息:
$file = "xxxx.txt";
$ff = "c:\\mywww\\www.bin3d.cn\\temp_upload\\files\\".$file."";
echo file_get_contents($ff);
错误信息是:
Warning:
file_get_contents(c:\mywww\www.xxx.cn\temp_upload\files\xxxx.txt):
failed to open stream: No such file or directory in....
请问是什么问题呢?好烦人啊
php
$file = "xxxx.txt"; $ff = "c:\\mywww\\www.bin3d.cn\\temp_upload\\files\\".$file; echo file_get_contents($ff);
上一篇: php 读取xml的方法一---DOMDocument读取xml
下一篇: PHP验证数据库密码问题
推荐阅读
-
php的file_get_contents的问题,很奇怪,不知道怎么解决!
-
PHP 项目在IE 和 火狐中不兼容的问题要怎么解决有图有真相
-
PHP下传文件一个很奇怪的有关问题
-
php 的数组合并问题怎么解决
-
发现个PHP很奇怪的有关问题?导致所有网站打不开,
-
php在做敏感词过滤时怎么解决用特殊符号分割、简繁体、半角全角,来绕开过滤的问题?
-
老话题了.PHP导出EXCEL,phpexcel类很强大,但是效率低速度慢,fputcsv速度快但不知道怎么解决科学计数法的问题,求老司机传授经验
-
PHP提交数据到mysql很奇怪的有关问题?
-
急怎么解决php GET 中文参数的有关问题
-
php 验证登陆cookie出现的一个很奇怪的有关问题,也许大家都没注意。求指导!