Skip to content

Instantly share code, notes, and snippets.

@jawngee
Created July 16, 2009 06:34
Show Gist options
  • Save jawngee/148263 to your computer and use it in GitHub Desktop.
Save jawngee/148263 to your computer and use it in GitHub Desktop.
<?
class StatsScreen extends Screen
{
private $start;
public function before($controller,$metadata,&$data)
{
$this->start=microtime(true);
}
public function after($controller,$metadata,&$data)
{
$data['execution_time']=microtime(true)-$this->start;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment