PHP goto operator

Source: Internet
Author: User

PHP goto operator

Can be used to jump to another location in the program. The position can be marked with the target name plus a colon, and the jump instruction is the position marker that the target is connected to after Goto

Some restrictions on the use of goto operators

The target location can only be in the same file and scope

Cannot "jump out" a function and a method of a class

Cannot "jump in" to another function

Cannot "jump" into any loop or switch structure

Can "jump out" the loop or switch, the general usage is to replace the multi-layer break


Simple and practical case

Goto target;

Echo ' Hi world ';

Target:

echo ' Hello World ';


Result Hello World


$i = 0;

$j = 50;

for ($i < 100; $i + +) {

while ($j-) {

if ($j = = 17)

Goto end;

}

}

echo "i = $i";

End:

Echo ' J hit 17 ';


Result J hit 17

650) this.width=650; "src=" http://s3.51cto.com/wyfs02/M02/72/A5/wKiom1Xp1g-yRk2bAAE_3WRhoUQ131.jpg "title=" capture. PNG "alt=" Wkiom1xp1g-yrk2baae_3wrhouq131.jpg "/>

This article is from the "Ouyangjun" blog, make sure to keep this source http://ouyangjun.blog.51cto.com/10284323/1691585

PHP goto operator

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.