server 52763dedf1 gitignore | 2 anos atrás | |
---|---|---|
.. | ||
Error | 2 anos atrás | |
ErrorEnhancer | 2 anos atrás | |
ErrorRenderer | 2 anos atrás | |
Exception | 2 anos atrás | |
Resources | 2 anos atrás | |
BufferingLogger.php | 2 anos atrás | |
CHANGELOG.md | 2 anos atrás | |
Debug.php | 2 anos atrás | |
DebugClassLoader.php | 2 anos atrás | |
ErrorHandler.php | 2 anos atrás | |
LICENSE | 2 anos atrás | |
README.md | 2 anos atrás | |
ThrowableUtils.php | 2 anos atrás | |
composer.json | 2 anos atrás |
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;
});