本文整理汇总了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';