profile-callstack.php 858 B

1234567891011121314151617181920212223242526272829
  1. <!-- start profiling callstack -->
  2. <table class="yiiLog" width="100%" cellpadding="2" style="border-spacing:1px;font:11px Verdana, Arial, Helvetica, sans-serif;background:#EEEEEE;color:#666666;">
  3. <tr>
  4. <th style="background:black;color:white;" colspan="2">
  5. Profiling Callstack Rapport
  6. </th>
  7. </tr>
  8. <tr style="background-color: #ccc;">
  9. <th>Procedure</th>
  10. <th>Tijd (s)</th>
  11. </tr>
  12. <?php
  13. foreach($data as $index=>$entry) {
  14. $color=($index%2)?'#F5F5F5':'#FFFFFF';
  15. list($proc,$time,$level)=$entry;
  16. $proc=CHtml::encode($proc);
  17. $time=sprintf('%0.5f',$time);
  18. $spaces=str_repeat('&nbsp;',$level*8);
  19. echo <<<EOD
  20. <tr style="background:{$color}">
  21. <td>{$spaces}{$proc}</td>
  22. <td align="center">{$time}</td>
  23. </tr>
  24. EOD;
  25. }
  26. ?>
  27. </table>
  28. <!-- end of profiling callstack -->