当前位置: 首页>>代码示例>>PHP>>正文


PHP TBGContext::setDebugMode方法代码示例

本文整理汇总了PHP中TBGContext::setDebugMode方法的典型用法代码示例。如果您正苦于以下问题:PHP TBGContext::setDebugMode方法的具体用法?PHP TBGContext::setDebugMode怎么用?PHP TBGContext::setDebugMode使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在TBGContext的用法示例。


在下文中一共展示了TBGContext::setDebugMode方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: die

<?php

// This code requires PHP 5.3 or newer, so if we don't have it - don't continue
if (PHP_VERSION_ID < 50300) {
    die('This software requires PHP 5.3.0 or newer, but you have an older version. Please upgrade.');
}
gc_enable();
date_default_timezone_set('UTC');
if (!defined('THEBUGGENIE_PATH')) {
    throw new \Exception('You must define the THEBUGGENIE_PATH constant so we can find the files we need');
}
// Load the context class, which controls most of things
require THEBUGGENIE_CORE_PATH . 'classes' . DS . 'TBGContext.class.php';
spl_autoload_register(array('TBGContext', 'autoload'));
TBGContext::setDebugMode(true);
TBGContext::setMinifyEnabled(false);
TBGContext::addAutoloaderClassPath(THEBUGGENIE_CORE_PATH . 'classes' . DS);
TBGContext::addAutoloaderClassPath(THEBUGGENIE_CORE_PATH . 'classes' . DS . 'B2DB' . DS);
TBGContext::autoloadNamespace('b2db', THEBUGGENIE_CORE_PATH . 'B2DB' . DS);
TBGContext::initialize();
// Initialize all composer loaded vendor packages
if (!file_exists(THEBUGGENIE_CORE_PATH . 'lib' . DS . 'autoload.php')) {
    throw new \TBGComposerException('You must initialize vendor libraries by running `composer.phar install` via cli');
}
require THEBUGGENIE_CORE_PATH . 'lib' . DS . 'autoload.php';
开发者ID:oparoz,项目名称:thebuggenie,代码行数:25,代码来源:bootstrap.php


注:本文中的TBGContext::setDebugMode方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。