llms_exit( int|string $status = null )
Native php exit() wrapper
Description Description
This wrapper exists primarily to allow easy testing of code that calls exit().
Parameters Parameters
- $status
-
(int|string) (Optional) Exit status passed to
exit()
.Default value: null
Return Return
(void)
Source Source
File: includes/functions/llms-functions-wrappers.php
function llms_exit( $status = null ) { exit( $status ); }
Expand full source code Collapse full source code View on GitHub
Changelog Changelog
Version | Description |
---|---|
5.3.0 | Introduced. |