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


PHP Wind::isDebug方法代码示例

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


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

示例1: onCreate

 public function onCreate()
 {
     Wekit::createapp(Wind::getAppName());
     $_debug = Wekit::C('site', 'debug');
     if ($_debug == !Wind::$isDebug) {
         Wind::$isDebug = $_debug;
     }
     error_reporting($_debug ? E_ALL ^ E_NOTICE ^ E_DEPRECATED : E_ERROR | E_PARSE);
     set_error_handler(array($this->front, '_errorHandle'), error_reporting());
     $this->_convertCharsetForAjax();
     if ($components = Wekit::C('components')) {
         Wind::getApp()->getFactory()->loadClassDefinitions($components);
     }
 }
开发者ID:ccq18,项目名称:EduSoho,代码行数:14,代码来源:PwFrontFilters.php

示例2: onCreate

 public function onCreate()
 {
     if (in_array(Wind::getAppName(), array('phpwind', 'pwadmin'))) {
         //云应用监听sql执行
         WindFactory::_getInstance()->loadClassDefinitions(array('sqlStatement' => array('proxy' => 'WIND:filter.proxy.WindEnhancedClassProxy', 'listeners' => array('LIB:compile.acloud.PwAcloudDbListener'))));
     }
     if (!is_file(Wind::getRealPath('DATA:install.lock', true))) {
         Wind::getApp()->getResponse()->sendRedirect("install.php");
     }
     Wekit::createapp(Wind::getAppName());
     $_debug = Wekit::C('site', 'debug');
     if ($_debug == !Wind::$isDebug) {
         Wind::$isDebug = $_debug;
     }
     if ('phpwind' == Wind::getAppName()) {
         error_reporting($_debug ? E_ALL ^ E_NOTICE ^ E_DEPRECATED : E_ERROR | E_PARSE);
         set_error_handler(array($this->front, '_errorHandle'), error_reporting());
     }
     $this->_convertCharsetForAjax();
     if ($components = Wekit::C('components')) {
         Wind::getApp()->getFactory()->loadClassDefinitions($components);
     }
 }
开发者ID:fanqimeng,项目名称:4tweb,代码行数:23,代码来源:PwFrontFilters.php

示例3: init

 /**
  * 初始化框架
  */
 public static function init()
 {
     self::$isDebug = WIND_DEBUG;
     function_exists('date_default_timezone_set') && date_default_timezone_set('Etc/GMT+0');
     self::register(WIND_PATH, 'WIND', true);
     if (!self::$_isAutoLoad) {
         return;
     }
     if (function_exists('spl_autoload_register')) {
         spl_autoload_register('Wind::autoLoad');
     } else {
         self::$_isAutoLoad = false;
     }
     self::_loadBaseLib();
 }
开发者ID:fanqimeng,项目名称:4tweb,代码行数:18,代码来源:Wind.php


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