Home > Article > Backend Development > PHP while loop control example explanation, while example explanation_PHP tutorial
while loop is the simplest loop in PHP, its basic format is:
while (expr){ statement }
或者
while (expr): statement endwhile;
This syntax means that as long as the expr expression is TRUE, the statement will be executed until expr is FALSE. The statement represents the action or logic to be executed.
<?php $i = 1; while ($i <= 10) { echo $i; $i++; } ?>
This example loops out 1 to 10.
Original address: http://www.manongjc.com/php/php_while.html
php related reading:
php strrpos() function case-sensitively finds the last occurrence of a string in another string
php strripos() function finds the last occurrence of a string in another string
php strpos() function finds the first occurrence of a string in another string
php stripos() finds the first occurrence of a string in another string
php stripslashes() function removes and filters backslashes in strings
php stripcslashes() function removes backslashes added by addcslashes() function
php strip_tags() function filters html and XML tags/elements in strings