本文整理汇总了PHP中Env::setLogName方法的典型用法代码示例。如果您正苦于以下问题:PHP Env::setLogName方法的具体用法?PHP Env::setLogName怎么用?PHP Env::setLogName使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Env
的用法示例。
在下文中一共展示了Env::setLogName方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: __construct
public function __construct($request = null)
{
if (isset($_SERVER['HTTP_HHVM_PATHINFO'])) {
$_SERVER['REQUEST_URI'] = $_SERVER['HTTP_HHVM_PATHINFO'];
}
if (self::$_instance !== null) {
throw new LogicException('Dola Application cannot be initialized again');
}
self::$_instance = $this;
$this->printRequestURI();
//获得module,controller,action
$this->initRequest($request);
if (!ctype_alnum($this->_module) || !in_array($this->_module, Env::getAllModule()) || 'index' == $this->_controller) {
Env::getLogger()->Info('Illegal Module or Controller---Module:' . $this->_module . " Controller:" . $this->_controller);
exit(22);
}
$module_class_name = $this->_module . '_Module';
if (class_exists($module_class_name)) {
$this->_moduleInstance = new $module_class_name();
} else {
Env::getLogger()->Info('Fatal Load Module ' . $this->_module . ' Cannot Find Class');
exit(22);
}
ini_set("error_log", str_replace("#module#", strtolower($this->_module), EnvConf::$phpLogPath));
Env::setLogName(ucfirst($this->_module));
Env::getLogger()->refreshIP(Env::getIP());
return self::$_instance;
}