Changeset 21583 for branches/version-2_12-dev/data/class/pages/LC_Page.php
- Timestamp:
- 2012/03/04 04:46:21 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/version-2_12-dev/data/class/pages/LC_Page.php
r21582 r21583 86 86 function init() { 87 87 // 開始時刻を設定する。 88 $this->timeStart = SC_Utils_Ex::sfMicrotimeFloat();88 $this->timeStart = microtime(true); 89 89 90 90 $this->tpl_authority = $_SESSION['authority']; … … 166 166 // エラー画面の表示では $this->timeStart が出力されない 167 167 if (defined('PAGE_DISPLAY_TIME_LOG_MODE') && PAGE_DISPLAY_TIME_LOG_MODE == true && isset($this->timeStart)) { 168 $timeEnd = SC_Utils_Ex::sfMicrotimeFloat();168 $timeEnd = microtime(true); 169 169 $timeExecTime = $timeEnd - $this->timeStart; 170 170 if (defined('PAGE_DISPLAY_TIME_LOG_MIN_EXEC_TIME') && $timeExecTime >= (float)PAGE_DISPLAY_TIME_LOG_MIN_EXEC_TIME) {
Note: See TracChangeset
for help on using the changeset viewer.
