PHP  
downloads | documentation | faq | getting help | mailing lists | reporting bugs | php.net sites | links | my php.net 
search for in the  
<if..endif 语法表达式类型>
Last updated: Sat, 20 Oct 2007

while 语法

如 if..endif 一样,while..endwhile 的语法也进行了改变:

例子 D-7. 移植:旧有 while..endwhile 语法

while ($more_to_come);
   ...
endwhile;

例子 D-8. 移植:新的 new while..endwhile 语法

while ($more_to_come):
   ...
endwhile;

警告

如果您在 PHP 3.0 中使用旧的 while..endwhile 语法,您的程序会进入死循环.




<if..endif 语法表达式类型>
 Last updated: Sat, 20 Oct 2007
 
Copyright © 2001-2005 The PHP Group
All rights reserved.
This unofficial mirror is operated at: http://manual.phpv.net/
Last updated: Thu Jul 7 19:13:47 2005 CST