一般に、性能が要求されるコードでは、テストコードを追加して計算します。
しかし、毎回 microtime、end – start を書くのはそれほど面倒ではないかもしれないので、それを行うためのクラスを単純に書きました。
class TimeCost{ private $cost = array(); private $record = array(); private $scale = 6; public function __construct($scale = 6) { $this->cost = array(); $this->record = array(); $this->scale = $scale; } public function __toString() { return $this->getString(); } /** * start to cal time. * * @param mixed $key */ public function addCost($key) { $this->cost[$key] = microtime(true); } /** * stop to cal time. * * @param mixed $key */ public function closeCost($key) { $cost = bcsub(microtime(true), $this->cost[$key], $this->scale); if (in_array($key, array_keys($this->record))) { $this->record[$key] = bcadd($cost, $this->record[$key], $this->scale); } else { $this->record[$key] = $cost; } return $cost; } public function getString($key = null) { if ($key) { return "{$key}[{$this->record[$key]}]"; } $str = ''; foreach ($this->record as $k => $v) { $str .= "{$k}[{$v}]"; } return $str; }}
$obj = new TimeCost();$token = 'test_a';$obj->addCost($token);some_code();$obj->closeCost($token);$reslut = $obj->getString($token);
時間精度: デフォルトで 6 桁が予約されています。より高い精度が必要な場合は、新しいオブジェクトを作成するときに $scale パラメーターを指定すると、値の形式がレコード配列に書き込まれます。
getString: トークンを渡すと、そのトークンに対応する結果が返されます。デフォルトでは、レコード内のすべての結果が結合されて返されます。