Let’s first talk about the usage of exit function.
Function: Output a message and terminate the current script.
If a piece of text includes multiple scripts ending with , exit exits the current script.
For example, if a PHP text includes the following code, the output is world.
<%
echo "hello";
exit;
?>
echo "world";
?>
Syntax format: void representation There is no return value.
void exit ([ string $status ] )
void exit ( int $status )
If status is a string, this function prints status before the script exits.
If status is an integer, this integer will be used as the exit status. Exit status should be from 0 to 254, exit status 255 is reserved by PHP and is prohibited from use. Status 0 is used to indicate successful termination of the procedure.
Usage of return language structure
Role: terminate the execution of a function and return a value from the function
break and continue are used in for, foreach, while, do..while or switch structures.
break ends the execution of the current for, foreach, while, do..while or switch structure.
break can accept an optional numeric parameter to determine how many loops to break out of.
Code:
<br><? php <BR>while (list ($key, $value) = each ($arr)) { <BR>if (!($key % 2)) { // skip odd members <BR>continue; <BR>} <BR>do_something_odd ($value); <BR>} <BR>$i = 0; <BR>while ($i++ < 5) { <BR>echo "Outer<br>n"; <br>while ( 1) { <br>echo " Middle<br>n"; <br>while (1) { <br>echo " Inner<br>n"; <br>continue 3; <br>} <br>echo " This never gets output.<br>n"; <br>} <br>echo "Neither does this.<br>n"; <br>} <br>?>