本文整理汇总了PHP中Environment::isDev方法的典型用法代码示例。如果您正苦于以下问题:PHP Environment::isDev方法的具体用法?PHP Environment::isDev怎么用?PHP Environment::isDev使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Environment
的用法示例。
在下文中一共展示了Environment::isDev方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1:
<?php
namespace Components;
if (Environment::isDev()) {
I18n_Scriptlet_Import_Cldr_Common::serve('import/cldr/common');
I18n_Scriptlet_Import_Cldr_Script::serve('import/cldr/script');
}
示例2: Log_Appender_Syslog
<?php
namespace Components;
Log::push(new Log_Appender_Syslog(COMPONENTS_APP_CODE));
if (Environment::isDev()) {
Runtime::addManagementIp(Runtime::getClientAddress());
}
if (isset($_REQUEST['debug']) || Environment::isDev()) {
if (isset($_REQUEST['debug'])) {
$debug = (int) $_REQUEST['debug'];
} else {
$debug = Debug::INFO;
}
if (0 < $debug) {
Debug::activate();
}
Debug::verbosity($debug);
Debug::appender(Debug::INFO, new Debug_Appender_Console());
Debug::enable(Debug::MARKUP);
}
示例3: onExit
/**
* @link http://php.net/manual/en/function.register-shutdown-function.php
*/
public function onExit()
{
$error = error_get_last();
if (null !== $error) {
$this->onError($error['type'], $error['message'], $error['file'], $error['line']);
}
if (self::$m_isCli) {
$hasErrors = 0 < count(self::$m_exceptions);
foreach (self::$m_exceptions as $exception) {
exception_print_cli($exception, true, true);
}
if (false === @is_file(self::$m_cacheFile)) {
Cache::dump(self::$m_cacheFile);
}
exit(false === $hasErrors ? 0 : -1);
}
if (Debug::active() && (self::isManagementAccess() || Environment::isDev())) {
if (0 < count(self::$m_exceptions)) {
Debug::verror(self::$m_exceptions);
}
Debug::flush();
self::$m_exceptions = [];
}
if (false === Environment::isDev()) {
self::$m_exceptions = [];
}
foreach (self::$m_exceptions as $exception) {
exception_print_html($exception, true, true);
}
}