问一个关于php中while的问题?

[复制链接]
查看11 | 回复1 | 2011-4-14 11:20:01 | 显示全部楼层 |阅读模式
回复

使用道具 举报

千问 | 2011-4-14 11:20:01 | 显示全部楼层
<pre id=\"best-answer-content\" class=\"reply-text mb10\">while 循环是 PHP 中最简单的循环类型。它和 C 语言中的 while 表现得一样。while 语句的基本格式是:


while (expr)

statement
?php
/* example 1 */

$i = 1;
while ($i = 10) {

echo $i;/* the printed value would be

$i before the increment

(post-increment) */
}

/* example 2 */

$i = 1;
while ($i = 10):

print $i;

$i;
endwhile;
?
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

主题

0

回帖

4882万

积分

论坛元老

Rank: 8Rank: 8

积分
48824836
热门排行