Break Statement $i = 0; while ( $i < 6 ) { if( $i == 3) break; $i++; } echo("Loop stopped at $i by break statement"); ?>