You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

11 lines
283 B

{:heading}Benchmarks{:end}
<?php
$width = array_reduce(array_keys($data['totals']), function($v, $w) {
return ($l = strlen($w)) > $v ? $l : $v;
});
foreach ($data['totals'] as $title => $result) {
printf("%-{$width}s %s\n", $title, $result['formatter']($result['value']));
}
?>