📜  PHP Else If 语句之前必须有一个 If 语句才能使用. - PHP 代码示例
📅  最后修改于: 2022-03-11 14:54:48.147000             🧑  作者: Mango
代码示例2
What output results from the following code?
$x = 0;
while($x<=7) {
$x++;
}
echo $x;