keven / symfony-console-live-table
symfony/console 的实时表格扩展
1.0.0
2019-03-28 15:09 UTC
Requires
- php: ^5.5 || ^7
- symfony/console: ^3.0 || ^4.0
This package is auto-updated.
Last update: 2024-08-29 05:18:27 UTC
README
在控制台中动态添加和删除表格行。
安装
$ composer require keven/symfony-console-live-table
使用方法
<?php use Keven\Symfony\Console\LiveTable; $table = new LiveTable; $table->setHeadesr(['Status', 'Name', 'URL']); $table->addRow(['<light_red>✗</light_red>', 'PHP', 'https://php.ac.cn']); $table->addRow(['<light_green>✓</light_green>', 'PHP League', 'https://thephpleague.com']); $table->render(); // Result in console: // +---+------------+--------------------------+ // | ! | Name | URL | // +---+------------+--------------------------+ // | ✗ | PHP | https://php.ac.cn | // | ✓ | PHP League | https://thephpleague.com | // +---+------------+--------------------------+ // You can also choose the added row index: $table->add(['<light_green>✓</light_green>', 'Packagist', 'https://packagist.org.cn'], 'packagist'); // Result in console: // --------------------------------------------- // | ! | Name | URL | // ============================================= // | ✗ | PHP | https://php.ac.cn | // --------------------------------------------- // | ✓ | PHP League | https://thephpleague.com | // --------------------------------------------- // | ✓ | Packagist | https://packagist.org.cn | // --------------------------------------------- // Remove some rows $table->remove($league); $table->remove('packagist'); // Result in console: // --------------------------------------------- // | ! | Name | URL | // ============================================= // | ✗ | PHP | https://php.ac.cn | // --------------------------------------------- // Clear all rows $table->clear(); // Result in console: // --------------------------------------------- // | ! | Name | URL | // ============================================= // | | | | // --------------------------------------------- // Finally delete totally the table of the CLI $table->delete();