优雅的死亡
您可能知道,在 PHP 中捕获致命错误是极其痛苦的,也几乎是不可能的。 这是一个(部分)解决这个问题的库
用法
<?php
require __DIR__ . "/vendor/autoload.php" ;
// The output will be:
//
// Yes, I can ;-)
GracefulDeath :: around ( function () {
try {
// Avoid to print the error in order to have clean output, don't try this at home :-)
error_reporting ( E_ALL ^ E_ERROR );
// Creating an instance of an unknown class wi
2021-07-10 12:03:51
25KB
PHP
1