Skip to content

Instantly share code, notes, and snippets.

@ciarand
Last active December 17, 2015 19:29
Show Gist options
  • Save ciarand/5660753 to your computer and use it in GitHub Desktop.
Save ciarand/5660753 to your computer and use it in GitHub Desktop.
<?php
$table = $this->getHelperSet()->get('table');
$table
->setHeaders(
array(
'',
'Absolute',
'Percent',
)
)
->setRows(
array(
array('Free', "12.76 GB", "<error>5.48%</error>"),
array('Total', "232.96 GB", "100.00%"),
array('Used', "220.2 GB", "94.52%"),
)
)
;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment