當前位置: 首頁>>代碼示例>>PHP>>正文


PHP Timer::logTime方法代碼示例

本文整理匯總了PHP中Timer::logTime方法的典型用法代碼示例。如果您正苦於以下問題:PHP Timer::logTime方法的具體用法?PHP Timer::logTime怎麽用?PHP Timer::logTime使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在Timer的用法示例。


在下文中一共展示了Timer::logTime方法的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: logTime

 function logTime($message)
 {
     if (false) {
         $this->timer->logTime($message);
     }
 }
開發者ID:bryandease,項目名稱:VuFind-Plus,代碼行數:6,代碼來源:BookCoverProcessor.php

示例2: Timer

    // Set up autoloader (needed for YAML)
    function vufind_autoloader($class)
    {
        $fullClassName = str_replace('_', '/', $class) . '.php';
        require $fullClassName;
    }
    spl_autoload_register('vufind_autoloader');
}
global $timer;
if (empty($timer)) {
    $timer = new Timer(microtime(false));
}
// Retrieve values from configuration file
require_once ROOT_DIR . '/sys/ConfigArray.php';
$configArray = readConfig();
$timer->logTime("Read config");
if (isset($configArray['System']['timings'])) {
    $timer->enableTimings($configArray['System']['timings']);
}
//Start a logger
$logger = new Logger();
//Update error handling
if ($configArray['System']['debug']) {
    ini_set('display_errors', true);
    error_reporting(E_ALL & ~E_DEPRECATED);
}
date_default_timezone_set($configArray['Site']['timezone']);
$timer->logTime("bootstrap");
//Create the QR Code if it doesn't exit
$type = $_REQUEST['type'];
$id = $_REQUEST['id'];
開發者ID:victorfcm,項目名稱:VuFind-Plus,代碼行數:31,代碼來源:qrcode.php

示例3: microtime

global $errorHandlingEnabled;
$errorHandlingEnabled = true;
$startTime = microtime(true);
require_once ROOT_DIR . '/sys/Logger.php';
require_once ROOT_DIR . '/sys/PEAR_Singleton.php';
PEAR_Singleton::init();
require_once ROOT_DIR . '/sys/ConfigArray.php';
require_once ROOT_DIR . '/sys/Utils/SwitchDatabase.php';
global $configArray;
$configArray = readConfig();
require_once ROOT_DIR . '/sys/Timer.php';
global $timer;
$timer = new Timer($startTime);
global $logger;
$logger = new Logger();
$timer->logTime("Read Config");
if ($configArray['System']['debug']) {
    ini_set('display_errors', true);
    error_reporting(E_ALL & ~E_DEPRECATED & ~E_STRICT);
}
//Use output buffering to allow session cookies to have different values
// this can't be determined before session_start is called
ob_start();
initMemcache();
initDatabase();
requireSystemLibraries();
initLocale();
// Sets global error handler for PEAR errors
PEAR_Singleton::setErrorHandling(PEAR_ERROR_CALLBACK, 'handlePEARError');
loadLibraryAndLocation();
loadSearchInformation();
開發者ID:victorfcm,項目名稱:VuFind-Plus,代碼行數:31,代碼來源:bootstrap.php

示例4: logTime

 function logTime($message)
 {
     if ($this->doTimings) {
         $this->timer->logTime($message);
     }
 }
開發者ID:victorfcm,項目名稱:VuFind-Plus,代碼行數:6,代碼來源:BookCoverProcessor.php


注:本文中的Timer::logTime方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。