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.49.72
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
unp_probe /
vendor /
symfony /
error-handler /
Delete
Unzip
Name
Size
Permission
Date
Action
Error
[ DIR ]
drwxr-xr-x
2021-01-27 09:09
ErrorEnhancer
[ DIR ]
drwxr-xr-x
2021-01-27 09:09
ErrorRenderer
[ DIR ]
drwxr-xr-x
2021-01-27 09:09
Exception
[ DIR ]
drwxr-xr-x
2021-01-27 09:09
Resources
[ DIR ]
drwxr-xr-x
2021-01-27 09:09
BufferingLogger.php
1.96
KB
-rw-r--r--
2021-01-27 09:09
CHANGELOG.md
149
B
-rw-r--r--
2021-01-27 09:09
Debug.php
1.08
KB
-rw-r--r--
2021-01-27 09:09
DebugClassLoader.php
41.27
KB
-rw-r--r--
2021-01-27 09:09
ErrorHandler.php
27.65
KB
-rw-r--r--
2021-01-27 09:09
LICENSE
1.04
KB
-rw-r--r--
2021-01-27 09:09
README.md
1.18
KB
-rw-r--r--
2021-01-27 09:09
ThrowableUtils.php
730
B
-rw-r--r--
2021-01-27 09:09
composer.json
971
B
-rw-r--r--
2021-01-27 09:09
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)