while

(PHP 4, PHP 5, PHP 7)

while ѭ���� PHP ����򵥵�ѭ�����͡����� C �����е� while ���ֵ�һ����while ���Ļ�����ʽ�ǣ�

while (expr)
    statement

while ���ĺ���ܼ򵥣������� PHP ֻҪ while ���ʽ��ֵΪ TRUE ���ظ�ִ��Ƕ���е�ѭ����䡣���ʽ��ֵ��ÿ�ο�ʼѭ��ʱ��飬���Լ�ʹ���ֵ��ѭ������иı��ˣ����Ҳ����ִֹͣ�У�ֱ������ѭ����������ʱ����� while ���ʽ��ֵһ��ʼ���� FALSE����ѭ�����һ�ζ�����ִ�С�

�� if ���һ���������� while ѭ�����û���������һ������飬����������﷨��

while (expr):
    statement
    ...
endwhile;

��������������ȫһ��������ʾ���� 1 �� 10��

<?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;
?>