How to block fatal error by php

how does php shield fatal error (fatal errors)? in other words, the system can do other things by using php programs to handle shielded fatal errors, report errors in time, and don"t show them to users.

Php
Jul.03,2022

error_reporting(0);

php.ini 
display_errors=off

 

set_error_handler
set_exception_handler  2
Menu