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


PHP GlobalConfig::isDebugMode方法代碼示例

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


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

示例1: kfIncludeMwClasses

require_once __DIR__ . '/src/Cache.php';
require_once __DIR__ . '/src/HtmlSelect.php';
require_once __DIR__ . '/src/HttpRequest.php';
require_once __DIR__ . '/src/LabsDB.php';
require_once __DIR__ . '/src/Request.php';
require_once __DIR__ . '/src/Wiki.php';
// POST overrides GET data
// We don't use $_REQUEST here to avoid interference from cookies.
$kgReq = new Request($_POST + $_GET);
$kgCache = new Cache(array(new MemoryCacheStore()));
$kgCache->enableHarvest();
// Backward compatibility: Deprecated, use composer instead and set config
// from consumer application instead.
if (file_exists(__DIR__ . '/LocalConfig.php')) {
    require_once __DIR__ . '/LocalConfig.php';
}
// Config init must have access to GlobalFunctions, $kgReq, and $kgCache.
// And must run after LocalConfig.
$kgConf->initConfig();
function kfIncludeMwClasses()
{
    require_once __DIR__ . '/lib/mw-mock.php';
}
kfIncludeMwClasses();
// Debug
if ($kgConf->isDebugMode()) {
    error_reporting(E_ALL);
    ini_set('display_errors', 1);
}
require_once __DIR__ . '/src/BaseTool.php';
require_once __DIR__ . '/src/KrToolBaseClass.php';
開發者ID:krinkle,項目名稱:toollabs-base,代碼行數:31,代碼來源:InitTool.php


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