PHP code example of jaeger-app / errors

1. Go to this page and download the library: Download jaeger-app/errors 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/ */

    

jaeger-app / errors example snippets


use JaegerApp\Errors

$errors = new Errors;
$errors->setError('error_key_1', 'error_lang_key');
$errors->setError('error_key_2', 'another_error_lang_key');

$system_errors = $errors->getErrors();