超適当。 /** * 実行時間計測フィルタの実装 * * @author halt feits * @access public * @package Ethna */ class Ethna_Plugin_Filter_Bench extends Ethna_Plugin_Filter { var $bm; var $use_bm = true; /** * 実行前フィルタ * * @access public */ function preFilter() { if ($this->use_bm) { require_once 'Benchmark/Timer.php'; $this->bm =& new Benchmark_Timer(); $this->bm->start(); } } function preActionFilter() { if ($this->use_bm)