文件无法在php中打开

时间:2017-12-24 07:37:46

标签: php

我从MySQL获取文件路径,存储在我的数据库中以读取.txt文件内容,但无法弄清楚出了什么问题。

$myfilepath=$record['CodeFilePath']; // here getting file path 
$content=file($myfilepath);          // giving it to function file()

foreach($content as $val){           //reading the content from file .txt
  echo $val;
} 

错误是

  

警告:文件(TUTORIAL1.TXT):未能打开流:无效的论据

1 个答案:

答案 0 :(得分:3)

确保使用....

在名称周围没有空格
$content=file(trim($myfilepath));

此外,如果您使用* nix平台,文件名区分大小写,那么TUTORIAL1.TXT与tutorial1.txt不是同一个文件。 Windows更加宽容。