"what is the “break/continue $var syntax” (will be removed in php 5.4)?" Code Answer

4

i assume, that this one is meant

break $c;
continue $c;

break and continue accepts a number, that specify the number of nested loops, that should be breaked up, or continued. have a look at the example at the manual.

however, it seems, that break and continue are not usable with variables anymore. in my personal experience, this will affect .. nobody ;)

By Jaqo on March 15 2022

Answers related to “what is the “break/continue $var syntax” (will be removed in php 5.4)?”

Only authorized users can answer the Search term. Please sign in first, or register a free account.