Incam_PROFIND_Web/yii/framework/views/zh_cn/profile-callstack.php
roberto 1e044b6498 Subida inicial.
Funciona:
- Usuario
- Empresa

git-svn-id: https://192.168.0.254/svn/Proyectos.Incam_PROFIND_Web/trunk@2 3fe1ab16-cfe0-e34b-8c9f-7d8c168d430d
2012-09-20 19:38:42 +00:00

28 lines
844 B
PHP

<!-- start profiling callstack -->
<table class="yiiLog" width="100%" cellpadding="2"
style="border-spacing: 1px; font: 11px Verdana, Arial, Helvetica, sans-serif; background: #EEEEEE; color: #666666;">
<tr>
<th style="background: black; color: white;" colspan="2">程序概要分析 - 堆栈调用报告</th>
</tr>
<tr style="background-color: #ccc;">
<th>步骤</th>
<th>时间 ()</th>
</tr>
<?php
foreach ( $data as $index => $entry ) {
$color = ($index % 2) ? '#F5F5F5' : '#FFFFFF';
list ( $proc, $time, $level ) = $entry;
$proc = CHtml::encode ( $proc );
$time = sprintf ( '%0.5f', $time );
$spaces = str_repeat ( '&nbsp;', $level * 8 );
echo <<<EOD
<tr style="background:{$color}">
<td>{$spaces}{$proc}</td>
<td align="center">{$time}</td>
</tr>
EOD;
}
?>
</table>
<!-- end of profiling callstack -->