server 52763dedf1 gitignore | hace 2 años | |
---|---|---|
.. | ||
Error | hace 2 años | |
ErrorEnhancer | hace 2 años | |
ErrorRenderer | hace 2 años | |
Exception | hace 2 años | |
Resources | hace 2 años | |
BufferingLogger.php | hace 2 años | |
CHANGELOG.md | hace 2 años | |
Debug.php | hace 2 años | |
DebugClassLoader.php | hace 2 años | |
ErrorHandler.php | hace 2 años | |
LICENSE | hace 2 años | |
README.md | hace 2 años | |
ThrowableUtils.php | hace 2 años | |
composer.json | hace 2 años |
The ErrorHandler component provides tools to manage errors and ease debugging PHP code.
$ composer require symfony/error-handler
use Symfony\Component\ErrorHandler\Debug;
use Symfony\Component\ErrorHandler\ErrorHandler;
use Symfony\Component\ErrorHandler\DebugClassLoader;
Debug::enable();
// or enable only one feature
//ErrorHandler::register();
//DebugClassLoader::enable();
$data = ErrorHandler::call(static function () use ($filename, $datetimeFormat) {
// if any code executed inside this anonymous function fails, a PHP exception
// will be thrown, even if the code uses the '@' PHP silence operator
$data = json_decode(file_get_contents($filename), true);
$data['read_at'] = date($datetimeFormat);
file_put_contents($filename, json_encode($data));
return $data;
});