![]() |
Multi-line cell content in CLI::table() - Printable Version +- CodeIgniter Forums (https://forum.codeigniter.com) +-- Forum: CodeIgniter 4 (https://forum.codeigniter.com/forumdisplay.php?fid=28) +--- Forum: CodeIgniter 4 Support (https://forum.codeigniter.com/forumdisplay.php?fid=30) +--- Thread: Multi-line cell content in CLI::table() (/showthread.php?tid=92409) |
Multi-line cell content in CLI::table() - joho - 01-31-2025 Code: +----+--------------------------+---------------------+--------+ I want do add an additional "row" in the "Updated at" cell. How would I do that with CLI::table()? I've tried adding a "\n" followed by the additional content, but that screws up the entire table layout... RE: Multi-line cell content in CLI::table() - luckmoshy - 01-31-2025 your code so we can process here RE: Multi-line cell content in CLI::table() - joho - 02-03-2025 (01-31-2025, 10:01 AM)luckmoshy Wrote: your code so we can process here What I have: Code: $thead = ['Site ID', 'Disabled', 'Fail' , 'Site name', 'Owner']; Code: $thead = ['Site ID', 'Disabled', 'Fail' , 'Site name / Owner']; |