Function __global->exit
Definitions
sources_custom/phpstub.php
- Output a message and terminate the current script.
- Visibility: public
- Is abstract?: No
- Is static?: No
- Is final?: No
Parameters
| Name | Type | Passed by reference? | Variadic? | Default | Set | Range | Description |
|---|---|---|---|---|---|---|---|
| $message | mixed | No | No | Blank (empty string) | N/A | N/A | The message (string), or status code (integer) |
Preview
Code (PHP)
/**
* Output a message and terminate the current script.
*
* @param mixed $message The message (string), or status code (integer)
*/
function exit($message = '')
* Output a message and terminate the current script.
*
* @param mixed $message The message (string), or status code (integer)
*/
function exit($message = '')

