PHP code example of w1575 / console-color

1. Go to this page and download the library: Download w1575/console-color 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/ */

    

w1575 / console-color example snippets


use w1575\ConsoleColor;

$console = new ConsoleColor('invert', 120);  
//  Пока что есть только 2 темы: default и inert. По-умолчанию используется (ВНЕЗАПНО!) default.
// Второй параметр - максимальная длина строки. используется для переноса длинных строк
$console->title('Заголовок');
$console->text('Обычный текст');
$console->info('Информация');
$console->success('Успешно');
$console->warning('Предупреждение');
$console->danger('Критическая ошибка');