<?php trigger_error(string $message, int $error_level = E_USER_NOTICE): true
<?php function fatalError($error): void { try { \trigger_error($error, E_USER_ERROR); } catch (\Throwable $e) { \set_error_handler(null); \trigger_error($error, E_USER_ERROR);
<?php \trigger_error($error, E_USER_ERROR); } catch (\Throwable $e) { \set_error_handler(null); \trigger_error($error, E_USER_ERROR); } }