* Halts the execution of the compiler. This can be useful to embed data in PHP scripts, like the installation files. * Byte position of the data start can be determined by the __COMPILER_HALT_OFFSET__ constant * which is defined only if there is a __halt_compiler() presented in the file. *
Note: __halt_compiler() can only be used from the outermost scope.
* @link https://php.net/manual/en/function.halt-compiler.php * @return void */ function PS_UNRESERVE_PREFIX___halt_compiler() {} /** * (PHP 5.1)E_WARNING
level error is emitted.
*
* @link https://php.net/manual/en/function.hex2bin.php
* @param string $string Hexadecimal string to convert.
* @return string|false The binary representation of the given data or FALSE on failure.
* @see bin2hex()
* @see unpack()
* @since 5.4
*/
function hex2bin(string $string): string|false {};
/**
* Get or Set the HTTP response code
* @param int $response_code The optional response_code will set the response code.
* @return int|bool The current response code. By default the return value is int(200).
*/
function http_response_code(int $response_code = 0): int|bool {}