break statement in PHP
Just like continue statement in PHP will alter execution of a loop, break statement will alter execution of a loop too. If continue statement will start execution of a loop from the beginning, than break statement will exit execution of a loop.
Comments
Post a Comment