0

我在 php 循环中读取文本文件时遇到问题。这是我的代码的一个更简单的示例,我知道我应该检查它是否存在在我的较长版本中的文件,但无论我做什么,这都不会读取我的文本文件。PHP 警告说文本文件是空的,但它们不是。PHP正在编写<br />tho。

for ($i=1; $i<=5; $i++)
{
   $myFile = "$i.txt";
   $readfile = file_get_contents($myfile);
   echo "$readfile <br />";
}
4

3 回答 3

5

您的传入$myfilefile_get_contents但它在$myFile上面被调用(区分大小写)

于 2012-04-13T13:17:38.263 回答
2

变量区分大小写。

for ($i = 1; $i <= 5; $i++) {
    $myFile = "$i.txt";
    $readfile = file_get_contents($myFile);
    echo "$readfile<br />";
}
于 2012-04-13T13:18:08.300 回答
0

如果你简化你的代码,那么出错的机会就会更少:

for ($i=1; $i<=5; $i++)
{
   readfile("$i.txt");
   echo "<br />";
}
于 2012-04-13T13:22:42.210 回答