PHP code example of gp247 / core
1. Go to this page and download the library: Download gp247/core 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/ */
gp247 / core example snippets
->withExceptions(function (Exceptions $exceptions) {
$exceptions->report(function (\Throwable $e) {
if (function_exists('gp247_handle_exception')) {
gp247_handle_exception($e);
}
});
});