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


PHP HtmlReporter::paintFooter方法代碼示例

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


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

示例1: paintFooter

 function paintFooter($test_name)
 {
     $duration = microtime(true) - $this->_timer;
     $micro = round($duration - floor($duration), 2);
     $seconds = floor($duration);
     $minutes = floor($seconds / 60);
     $seconds = $seconds % 60;
     $d = $minutes ? $minutes . ' minute' . ($minutes > 1 ? 's ' : ' ') : '';
     $d .= $seconds + $micro . ' seconds';
     echo '<div style="border:1px solid orange; background: lightyellow; color:orange">Time taken: ' . $d . '</div>';
     parent::paintFooter($test_name);
 }
開發者ID:pombredanne,項目名稱:tuleap,代碼行數:12,代碼來源:CodendiReporter.class.php

示例2: paintFooter

 function paintFooter($test_name)
 {
     if ($this->getFailCount() + $this->getExceptionCount() == 0) {
         $text = $this->getPassCount() . " tests ok";
         print "<div style=\"background-color:#F5FFA8; text-align:center; right:10px; top:30px; border:2px solid green; z-index:10; position:absolute;\">{$text}</div>";
     } else {
         parent::paintFooter($test_name);
         print "</div>";
     }
 }
開發者ID:mfavetti,項目名稱:LimeSurvey,代碼行數:10,代碼來源:simpletester.php

示例3: paintFooter

 function paintFooter($test_name)
 {
     echo '<div class="progress percents" style="z-index:12">Done.</div>';
     ob_end_flush();
     parent::paintFooter($test_name);
 }
開發者ID:justinlyon,項目名稱:scc,代碼行數:6,代碼來源:ProgressReporter.php


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