本文整理汇总了PHP中AppHelper::getPhpConfigValueAsBool方法的典型用法代码示例。如果您正苦于以下问题:PHP AppHelper::getPhpConfigValueAsBool方法的具体用法?PHP AppHelper::getPhpConfigValueAsBool怎么用?PHP AppHelper::getPhpConfigValueAsBool使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类AppHelper
的用法示例。
在下文中一共展示了AppHelper::getPhpConfigValueAsBool方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: actionRenderError
/**
* Renders an error template.
*
* @throws \Exception
* @return null
*/
public function actionRenderError()
{
$error = craft()->errorHandler->getError();
$code = (string) $error['code'];
if (craft()->request->isSiteRequest()) {
$prefix = craft()->config->get('errorTemplatePrefix');
if (craft()->templates->doesTemplateExist($prefix . $code)) {
$template = $prefix . $code;
} else {
if ($code == 503 && craft()->templates->doesTemplateExist($prefix . 'offline')) {
$template = $prefix . 'offline';
} else {
if (craft()->templates->doesTemplateExist($prefix . 'error')) {
$template = $prefix . 'error';
}
}
}
}
if (!isset($template)) {
craft()->templates->setTemplateMode(TemplateMode::CP);
if (craft()->templates->doesTemplateExist($code)) {
$template = $code;
} else {
$template = 'error';
}
}
try {
$variables = array_merge($error);
// Escape any inner-word underscores, which Markdown mistakes for italics
// TODO: This won't be necessary in 3.0 thanks to Parsedown
$variables['message'] = preg_replace('/(?<=[a-zA-Z])_(?=[a-zA-Z])/', '\\_', $variables['message']);
// If this is a PHP error and html_errors (http://php.net/manual/en/errorfunc.configuration.php#ini.html-errors)
// is enabled, then allow the HTML not get encoded
if (strncmp($variables['type'], 'PHP ', 4) === 0 && AppHelper::getPhpConfigValueAsBool('html_errors')) {
$variables['message'] = TemplateHelper::getRaw($variables['message']);
}
$this->renderTemplate($template, $variables);
} catch (\Exception $e) {
if (YII_DEBUG) {
throw $e;
} else {
// Just output the error message
echo str_replace(array('“', '”', '‘', '’'), array('"', '"', '\'', '\''), $e->getMessage());
}
}
}