Linux unitednationsplay.com 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64
nginx/1.20.1
Server IP : 188.130.139.92 & Your IP : 3.145.36.171
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
1 /
vendor /
symfony /
error-handler /
Delete
Unzip
Name
Size
Permission
Date
Action
Error
[ DIR ]
drwxr-xr-x
2020-11-17 16:24
ErrorEnhancer
[ DIR ]
drwxr-xr-x
2020-11-17 16:24
ErrorRenderer
[ DIR ]
drwxr-xr-x
2020-11-17 16:24
Exception
[ DIR ]
drwxr-xr-x
2020-11-17 16:24
Resources
[ DIR ]
drwxr-xr-x
2020-11-17 16:24
BufferingLogger.php
1.72
KB
-rw-r--r--
2020-11-17 16:24
CHANGELOG.md
296
B
-rw-r--r--
2020-11-17 16:24
Debug.php
1.08
KB
-rw-r--r--
2020-11-17 16:24
DebugClassLoader.php
41.15
KB
-rw-r--r--
2020-11-17 16:24
ErrorHandler.php
28.6
KB
-rw-r--r--
2020-11-17 16:24
LICENSE
1.04
KB
-rw-r--r--
2020-11-17 16:24
README.md
1.18
KB
-rw-r--r--
2020-11-17 16:24
ThrowableUtils.php
730
B
-rw-r--r--
2020-11-17 16:24
composer.json
956
B
-rw-r--r--
2020-11-17 16:24
Save
Rename
ErrorHandler Component ====================== The ErrorHandler component provides tools to manage errors and ease debugging PHP code. Getting Started --------------- ``` $ composer require symfony/error-handler ``` ```php 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; }); ``` Resources --------- * [Contributing](https://symfony.com/doc/current/contributing/index.html) * [Report issues](https://github.com/symfony/symfony/issues) and [send Pull Requests](https://github.com/symfony/symfony/pulls) in the [main Symfony repository](https://github.com/symfony/symfony)