Skip to content

Latest commit

 

History

History
30 lines (24 loc) · 507 Bytes

README.md

File metadata and controls

30 lines (24 loc) · 507 Bytes

php-terminal

Some tools of php for terminal

Install

get it by

git clone https://github.com/songxk/php-terminal.git

then include it into your PHP script

Color

<?php
require 'Color.php';
$style = array(
    Color::BOLD,
    Color::UNDERLINED,
);
echo 'Enjoy ' . Color::format('php-terminal-color', Color::LIGHT_MAGENTA, $style) . ' library';

Progress

<?php
require 'Progress.php';
for($percent=0;$percent<=100;$percent++) {
    Progress::showProgressBar($percent);
}