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().


Top ↑

Parameters Parameters

$status

(int|string) (Optional) Exit status passed to exit().

Default value: null


Top ↑

Return Return

(void)


Top ↑

Source Source

File: includes/functions/llms-functions-wrappers.php

	function llms_exit( $status = null ) {
		exit( $status );
	}


Top ↑

Changelog Changelog

Changelog
Version Description
5.3.0 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.