我在 php 循环中读取文本文件时遇到问题。这是我的代码的一个更简单的示例,我知道我应该检查它是否存在在我的较长版本中的文件,但无论我做什么,这都不会读取我的文本文件。PHP 警告说文本文件是空的,但它们不是。PHP正在编写<br />
tho。
for ($i=1; $i<=5; $i++)
{
$myFile = "$i.txt";
$readfile = file_get_contents($myfile);
echo "$readfile <br />";
}
我在 php 循环中读取文本文件时遇到问题。这是我的代码的一个更简单的示例,我知道我应该检查它是否存在在我的较长版本中的文件,但无论我做什么,这都不会读取我的文本文件。PHP 警告说文本文件是空的,但它们不是。PHP正在编写<br />
tho。
for ($i=1; $i<=5; $i++)
{
$myFile = "$i.txt";
$readfile = file_get_contents($myfile);
echo "$readfile <br />";
}
您的传入$myfile
,file_get_contents
但它在$myFile
上面被调用(区分大小写)
变量区分大小写。
for ($i = 1; $i <= 5; $i++) {
$myFile = "$i.txt";
$readfile = file_get_contents($myFile);
echo "$readfile<br />";
}
如果你简化你的代码,那么出错的机会就会更少:
for ($i=1; $i<=5; $i++)
{
readfile("$i.txt");
echo "<br />";
}