也许我的问题似乎是主要的,但实际上并非如此。我声称我可以通过for()
使用while()
完成所有,反之亦然。那么,while()
在for()
时有用吗?我需要一个示例,我可以通过for()
来做到这一点,我不能通过while()
来做到这一点。有?我认为没有......!
这是结构:
for (init counter; test counter; increment counter) {
code to be executed;
}
init counter;
while (test counter) {
code to be executed;
increment counter;
}
见?它们完全一样,现在我想知道为什么 php 都有这两个?