欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

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