PHP continue

continue is used within looping structures to skip the rest of the current loop iteration and continue execution at the condition evaluation and then the beginning of the next iteration. A basic example that prints “13”, skipping over 2. $arr = array( 1, 2, 3 ); foreach( $arr as $number ) { if( $number == … Continue reading PHP continue