PHP code example of jaeger-app / console

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


use JaegerApp\Console;
use JaegerApp\Language;

$language = new Language; 
... setup language ...

$console = new Console();
$console->setLang($language);

$console->outputError('My error string');
$console->outputLine('My line of text to output in the console');
$console->outputPageBreak();