Descriptions of phpwhile loop control instances and while instances. The phpwhile loop control instance explains that while loop is the simplest loop in PHP. its basic format is: while (expr) {statement} or while (expr ): statementendwhile php while loop control instance description, while instance description
While loop is the simplest loop in PHP. its basic format is:
while (expr){ statement}
Or
while (expr): statementendwhile;
This syntax indicates that as long as the expr expression is TRUE, statement is executed until the expr is FALSE, and statement indicates the action or logic to be executed.
In this example, 1 to 10 are output cyclically.
Address: http://www.manongjc.com/php/php_while.html
Php Related reading:
The php strrpos () function is case-sensitive. it is used to locate the last occurrence of a string in another string.
The php strripos () function is used to locate the last occurrence of a string in another string.
The php strpos () function is used to find the position where the string first appears in another string.
Php stripos () searches for the position where the string first appears in another string
The php stripslashes () function deletes and filters backslashes from strings.
The php stripcslashes () function deletes the backslash added by the addcslashes () function.
The php strip_tags () function filters html and XML tags/elements in strings.
Http://www.bkjia.com/PHPjc/1130146.htmlwww.bkjia.comtruehttp://www.bkjia.com/PHPjc/1130146.htmlTechArticlephp while loop control instance explanation, while instance explanation while loop is the most simple loop in PHP, its basic format is: while (expr) {statement} or while (expr ): statementendwhile...