tony-landis (owner)

Revisions

gist: 31474 Download_button fork
public
Public Clone URL: git://gist.github.com/31474.git
Embed All Files: show embed
php-to-text-table-example.php #
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<?php
 
$data = array(
array('company'=>'AIG', 'id'=>1, 'balance'=> '-$99,999,999,999.00'),
array('company'=>'Wachovia', 'id'=>2, 'balance'=> '-$10,000,000.00'),
array('company'=>'HP', 'id'=>3, 'balance'=> '$555,000.000.00'),
array('company'=>'IBM', 'id'=>4, 'balance'=> '$12,000.00')
);
 
$renderer = new ArrayToTextTable($data);
$renderer->showHeaders(true);
$renderer->render();
 
?>