当前位置:Gxlcms > PHP教程 > php的file_get_contents的问题,很奇怪,不知道怎么解决!

php的file_get_contents的问题,很奇怪,不知道怎么解决!

时间:2021-07-01 10:21:17 帮助过:7人阅读

在使用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);

人气教程排行