server 52763dedf1 gitignore | лет назад: 2 | |
---|---|---|
.. | ||
Error | лет назад: 2 | |
ErrorEnhancer | лет назад: 2 | |
ErrorRenderer | лет назад: 2 | |
Exception | лет назад: 2 | |
Resources | лет назад: 2 | |
BufferingLogger.php | лет назад: 2 | |
CHANGELOG.md | лет назад: 2 | |
Debug.php | лет назад: 2 | |
DebugClassLoader.php | лет назад: 2 | |
ErrorHandler.php | лет назад: 2 | |
LICENSE | лет назад: 2 | |
README.md | лет назад: 2 | |
ThrowableUtils.php | лет назад: 2 | |
composer.json | лет назад: 2 |
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;
});