PHP foreach jumps out of this/current loop and terminates the loop method Language Notes PHP
`continue`: Exit the current iteration; `break`: Terminate the loop; `exit`: Ends the execution of the program; `return`: Ends a block of code; $arr = array('le', 'yang', 'jun', 'lecode', 'gagade');...