The What
Syntax
mixed return [ mixed $return_value ];
Description
This PHP function stops the current program execution and returns control back to the caller, i.e. the code that called the function or method. It returns the specific value or NULL
.
Parameters
return_value
- optional The optional value to return to the caller.
Return Values
Returns the value if supplied; else you’ll get a NULL
back.
Break. Go rest your noodle for a couple of minutes.
More coming soon…keep checking back.