在我的 PHP 中,我遇到了循环问题。它应该是从低到高写的,但它是从高到低写的。这是我的代码非常精简。
变量首先等于这些。
$high = 5
$number = 10
环形
for ($i=$high; $i<=$number; $i++)
{
if (file_exists("blog/" . $i . ".txt")) {
echo "The file $i.txt exists <br />";
}else{
echo "This file $i.txt doesnt exist <br />";
}
}
输出是这样的
5
6
7
8
9
10
但不应该这样吗?这就是我需要的。
10
9
8
7
6
5