The break statement for PHP Process Control

Source: Internet
Author: User
This article mainly introduces the PHP process control of the break, has a certain reference value, now share to everyone, the need for friends can refer to

This paper tries to use the basic Learning Master, please close this page

Read this article for 12 minutes, it's hard to understand.

<?php$arr = Array (' One ', ' one ', ' one ', ' three ', ' four ', ' Stop ', ' five ') and the while (List (    , $val) = each ($arr)) {if ($val = = ' Stop ') {break; /* You could also write ' break 1; */} echo "$val <br/>\n";}        /* Use optional parameter */$i = 0;while (+ + $i) {switch ($i) {case 5:echo ' at 5<br/>\n ';  Break 1; /* Exit switch only. */Case 10:echo ' at 10;        Quitting<br/>\n ";  Break 2;    /* Exit switch and while loop */default:break; }}?> 

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.