當前位置: 首頁>>代碼示例>>PHP>>正文


PHP CDiv::attr方法代碼示例

本文整理匯總了PHP中CDiv::attr方法的典型用法代碼示例。如果您正苦於以下問題:PHP CDiv::attr方法的具體用法?PHP CDiv::attr怎麽用?PHP CDiv::attr使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在CDiv的用法示例。


在下文中一共展示了CDiv::attr方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: show

 /**
  * Output profiling data.
  */
 public function show()
 {
     global $DB;
     $debug_str = '<a name="debug"></a>';
     $debug_str .= '******************** ' . _('Script profiler') . ' ********************' . '<br>';
     $totalScriptTime = $this->stopTime - $this->startTime;
     $totalTimeStr = _s('Total time: %s', round($totalScriptTime, 6));
     if ($totalTimeStr > $this->slowScriptTime) {
         $totalTimeStr = '<b>' . $totalTimeStr . '</b>';
     }
     $debug_str .= $totalTimeStr . '<br>';
     $sqlTotalTimeStr = _s('Total SQL time: %s', $this->sqlTotalTime);
     if ($sqlTotalTimeStr > $this->slowTotalSqlTime) {
         $sqlTotalTimeStr = '<b>' . $sqlTotalTimeStr . '</b>';
     }
     $debug_str .= $sqlTotalTimeStr . '<br>';
     if (isset($DB) && isset($DB['SELECT_COUNT'])) {
         $debug_str .= _s('SQL count: %s (selects: %s | executes: %s)', count($this->sqlQueryLog), $DB['SELECT_COUNT'], $DB['EXECUTE_COUNT']) . '<br>';
     }
     $debug_str .= _s('Peak memory usage: %s', mem2str($this->getMemoryPeak())) . '<br>';
     $debug_str .= _s('Memory limit: %s', ini_get('memory_limit')) . '<br>';
     $debug_str .= '<br>';
     foreach ($this->apiLog as $i => $apiCall) {
         $debug_str .= '<div style="border-bottom: 1px dotted gray; margin-bottom: 20px;">';
         list($class, $method, $params, $result, $file, $line) = $apiCall;
         // api method
         $debug_str .= '<div style="padding-bottom: 10px;">';
         $debug_str .= $i + 1 . '. <b>' . $class . '->' . $method . '</b> [' . $file . ':' . $line . ']';
         $debug_str .= '</div>';
         // parameters
         $debug_str .= '<table><tr><td style="width: 300px" valign="top">Parameters:';
         foreach ($params as $p) {
             $debug_str .= '<pre>' . print_r(CHtml::encode($p), true) . '</pre>';
         }
         $debug_str .= '</td>';
         // result
         $debug_str .= '<td valign="top">Result:<pre>' . print_r(CHtml::encode($result), true) . '</pre></td>';
         $debug_str .= '</tr></table>';
         $debug_str .= '</div>';
     }
     $debug_str .= '<br>';
     foreach ($this->sqlQueryLog as $query) {
         $time = $query[0];
         $sql = htmlspecialchars($query[1], ENT_QUOTES, 'UTF-8');
         if (strpos($sql, 'SELECT ') !== false) {
             $sqlString = '<span style="color: green; font-size: 1.2em;">' . $sql . '</span>';
         } else {
             $sqlString = '<span style="color: blue; font-size: 1.2em;">' . $sql . '</span>';
         }
         $sqlString = 'SQL (' . $time . '): ' . $sqlString . '<br>';
         if ($time > $this->slowSqlQueryTime) {
             $sqlString = '<b>' . $sqlString . '</b>';
         }
         $debug_str .= $sqlString;
         $callStackString = '<span style="font-style: italic;">' . $this->formatCallStack($query[2]) . '</span>' . '<br>' . '<br>';
         $debug_str .= rtrim($callStackString, '-> ') . '</span>' . '<br>' . '<br>';
     }
     $debug = new CDiv(null, 'textcolorstyles');
     $debug->attr('name', 'zbx_debug_info');
     $debug->attr('style', 'display: none; overflow: auto; width: 95%; border: 1px #777777 solid; margin: 4px; padding: 4px;');
     $debug->addItem(array(BR(), new CJSscript($debug_str), BR()));
     $debug->show();
 }
開發者ID:itnihao,項目名稱:zatree-2.2,代碼行數:66,代碼來源:CProfiler.php


注:本文中的CDiv::attr方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。