Is threr a de-facto standard library for creating ASCII "tables" in PHP?
Basically, I want some PHP code that, when handed an Array or other data structure will output tables that look something like the mysql command line client's results
+--------+---------------------+----------------------------------+
| fld_id | fld_name | fld_email |
+--------+---------------------+----------------------------------+
| 1 | A value | another value |
| 2 | A value | |
| 3 | A value | another value |
+--------+---------------------+----------------------------------+
Not rocket science, or even computer science, but certainly tedious science that someone's already solved.