本文整理匯總了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';