Changeset 18660


Ignore:
Timestamp:
2010/05/30 01:42:33 (14 years ago)
Author:
Seasoft
Message:

#709(管理モード時の処理時間の表示をミリ秒単位に)追加

  • 小数点以下の表示桁数を固定
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/comu-ver2/data/class/SC_View.php

    r18625 r18660  
    137137            $time_end = SC_Utils_Ex::sfMicrotimeFloat(); 
    138138            $time = $time_end - $this->time_start; 
    139             echo '処理時間: ' . round($time, 3) . 秒; 
     139            echo '処理時間: ' . sprintf('%.3f', $time) . 秒; 
    140140        } 
    141141    } 
Note: See TracChangeset for help on using the changeset viewer.