PHP code example of chevere / throwable-handler
1. Go to this page and download the library: Download chevere/throwable-handler library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
chevere / throwable-handler example snippets
use Chevere\ThrowableHandler\ThrowableHandler;
set_error_handler(ThrowableHandler::ERROR_AS_EXCEPTION);
register_shutdown_function(ThrowableHandler::SHUTDOWN_ERROR_AS_EXCEPTION);
use Chevere\ThrowableHandler\ThrowableHandler;
set_exception_handler(ThrowableHandler::PLAIN);