2014-11-08 60 views
1

CodeIgniter具有始終處於活動狀態的基準類,可以計算任意兩個標記點之間的時差。代碼點火器中的基準

如果要測量兩點之間的時間差,您只需添加以下代碼:

$this->benchmark->mark('code_start'); 

// Some code happens here 

$this->benchmark->mark('code_end'); 

echo $this->benchmark->elapsed_time('code_start', 'code_end'); 

但什麼結果函數elapsed_time正在恢復,秒,毫秒或其他單位?

回答

1

它返回一個浮點數表示秒,「0.654」= 0秒和654毫秒。 etc