keven / climate-live-table
league/climate 的实时表格扩展
1.0.0
2019-03-22 19:27 UTC
Requires
- league/climate: ^3.2
This package is auto-updated.
Last update: 2024-09-23 08:36:16 UTC
README
在控制台中动态添加和删除表格行。
安装
$ composer require keven/climate-live-table
用法
<?php use League\CLImate\CLImate; use Keven\CLImate\LiveTable; $climate = new CLImate; $climate->extend(LiveTable::class, 'liveTable'); $table = $climate->liveTable( // Initial rows [ ['<light_red>✗</light_red>', 'PHP', 'https://php.ac.cn'], ], // Headers ['Status', 'Name', 'URL'] ); // Add some rows $league = $table->add(['<light_green>✓</light_green>', 'PHP League', 'https://thephpleague.com']); // 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();