从其他文件

时间:2015-11-18 02:31:49

标签: php include break

我在尝试在while循环下包含在第一个文件中的另一个文件上使用break时遇到了一些麻烦,并遇到了错误。我想知道,除了明显的答案之外,有没有办法解决这个问题:在第一个文件下包含中断。那么,有没有办法在第二个文件中包含中断,不知何故?感谢。

test1.php

$count = 10;
while ($count > 0) {
$count--;
include("test2.php");
}

test2.php

echo $count."<br>";
if ($count == 5) {
break;
}

结果:

9
8
7
6
5
Fatal error: Cannot break/continue 1 level in websiteName on line 5

0 个答案:

没有答案