php的file_get_contents的问题,很奇怪,不知道怎么解决!
程序员文章站
2022-04-30 15:03:11
...
在使用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 GET 中文参数的有关问题
-
php 验证登陆cookie出现的一个很奇怪的有关问题,也许大家都没注意。求指导!
-
PHP提交数据到mysql很奇怪的有关问题?
-
第一次用php写webservice遇到一个很奇怪的有关问题,详细请看内容,有代码
-
PHP GD库 imagettftext() 怎么解决其生成的字体模糊问题
-
一个很奇怪的PHP有关问题
-
php的一点小问题 不太懂怎么解决
-
急怎么解决php GET 中文参数的有关问题
-
今天升级hibernate3.2GA遇到一个很奇怪的问题(谢谢大家,已解决) HibernateMySQLCacheSpringOpenSource
-
PHP GD库 imagettftext() 怎么解决其生成的字体模糊问题