1. Go to this page and download the library: Download win0err/php-terminal-tools 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/ */
win0err / php-terminal-tools example snippets
use win0err\TerminalTools\TextFormatter;
use win0err\TerminalTools\Colors\{Classic, Extended, TrueColor};
$textFormatter = new TextFormatter( "Съешь ещё этих мягких французских булок, да выпей чаю" );
echo $textFormatter;
// или сокращённая запись:
echo TextFormatter::format(
"В чащах юга жил бы цитрус? Да, но фальшивый экземпляр!" /* $text */, // Обязательно
new Extended(198) /* $textColor = null */,
new Extended(200) /* $backgroundColor = null*/,
TextFormatter::BOLD /* ...$styles */
);