本帖最后由 lghyt1 于 2013-12-13 17:30:27 编辑
<?php do{ echo "循环".++$a; }while($a<4)?>
这段代码的输出结果是:循环1循环2循环3循环4
我的疑问是:这里没有给$a事先增值啊,如输出一个循环1我还能理解,因为是do while循环,不管三七二十一,先输出一个再说,可是它竞然又输出了三个,我就不理解了,没有初始化$a这个变量,怎么能有那么多值呢?
下面 也一样的问题
<?php while($a<4){ echo "循环".++$a; }?>
回复讨论(解决方案)
请你认真看书或手册!弄明白 ++$a 是怎么回事
首先$a是NULL;(++$a)这段代码返回的值为$a的值即为1;每循环一次增加1;所以输出了四次。
do{
echo gettype($a);
echo "循环".++$a;
}while($a
Statement:The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn