本文整理匯總了PHP中sfException::getTraces方法的典型用法代碼示例。如果您正苦於以下問題:PHP sfException::getTraces方法的具體用法?PHP sfException::getTraces怎麽用?PHP sfException::getTraces使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類sfException
的用法示例。
在下文中一共展示了sfException::getTraces方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: toggle
<?php
if ('500' != $sf_error_log->getType()) {
return;
}
?>
<?php
$e = new sfException();
$traces = $e->getTraces($sf_error_log->getExceptionObject(), 'html');
?>
<style>
#main { font: 11px Verdana, Arial, sans-serif; color: #333 }
ul { list-style: decimal }
ul li { padding-bottom: 5px; margin: 0 }
ol { font-family: monospace; white-space: pre; list-style-position: inside; margin: 0; padding: 10px 0 }
ol li { margin: -5px; padding: 0 }
ol .selected { font-weight: bold; background-color: #ddd; padding: 2px 0 }
</style>
<script type="text/javascript">
function toggle(id)
{
el = document.getElementById(id); el.style.display = el.style.display == 'none' ? 'block' : 'none';
}
</script>
<ul id="main">
<li><?php
echo implode("</li>\n<li>", $traces);
示例2: str_replace
<?php
$traces = sfException::getTraces($exception, 'plain');
?>
<h2 id="message"><?php
echo str_replace("\n", '<br />', htmlspecialchars($exception->getMessage(), ENT_QUOTES, sfConfig::get('sf_charset', 'UTF-8')));
?>
</h2>
<?php
if ($exception instanceof limeException) {
$url = $exception->getUrl();
?>
Please visit <a href="<?php
echo $url;
?>
"><?php
echo $url;
?>
</a> for more information.
<?php
} else {
?>
This exception does not appear to have an associated help page. Bummer.
<?php
}
?>
<h2>stack trace</h2>
<ul><li><?php
echo implode('</li><li>', $traces);
?>