本文主要介紹了PHP 進度條函數的簡單實例的相關資料,希望透過本文能幫助到大家,需要的朋友可以參考下,希望能幫助到大家。
PHP 進度條函數的簡單實例
其實進度條的做法很簡單的。網路上的一大堆,自己寫了一個,哈哈,感覺看起來很有感覺。
實例程式碼:
function ShowPercent($now,$total) { $percent = sprintf('%.0f',$now*100/$total); $html = '<table width="60%" style="border-collapse:separate" height="10" border="0" cellpadding="0" cellspacing="2" bgcolor="#fff"><tr>'; $count=0; $pertr = 30; while($count < $total) { $bgcolor = $count < $now ? 'green':'#EEEEEE'; $html .= '<td bgcolor="'.$bgcolor.'"> </td>'; $count++; if($count%$pertr == 0) $html .= '</tr><tr>'; } $bgcolor2 = $now == $total ? ' style="font-weight:bold;color:green;"':''; $html .= '<td'.$bgcolor2.' colspan="'.($count%$pertr).'">'.$percent.'%</td></tr></table>'; return $html; }
效果截圖: 100%的時候。
相關推薦:
以上是關於PHP 進度條函數的簡單實例的詳細內容。更多資訊請關注PHP中文網其他相關文章!