Simple example of phpwhile loop control, phpwhile loop instance _ PHP Tutorial

Source: Internet
Author: User
Simple example of phpwhile loop control, phpwhile loop instance. A simple example of phpwhile loop control. a while loop instance of phpwhile loop is the simplest loop in PHP. its basic format is: while (expr) {statement} or while (expr ): statement php while loop control simple instance, phpwhile loop instance

While loop is the simplest loop in PHP. its basic format is:

While (expr) {statement}

Or

While (expr): statement endwhile;

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.

<? Php $ I = 1; while ($ I <= 10) {echo $ I; $ I ++;}?>

In this example, 1 to 10 are output cyclically.

The simple example of the above php while loop control is all the content shared by the editor. I hope to give you a reference, and I hope you can support the help house more.

Http://www.bkjia.com/PHPjc/1133045.htmlwww.bkjia.comtruehttp://www.bkjia.com/PHPjc/1133045.htmlTechArticlephp while loop control simple instance, phpwhile loop instance while loop is the most simple loop in PHP, the basic format is: while (expr) {statement} or while (expr ): statement...

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.