php中关于进度条函数的实例分析
程序员文章站
2022-04-07 22:07:22
...
这篇文章主要介绍了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中关于进度条函数的实例分析的详细内容,更多请关注其它相关文章!
上一篇: HTML里常用的链接标记注解
下一篇: 纯CSS实现讲话和语音的气泡效果
推荐阅读
-
PHP中cookie和session的区别实例分析_php实例
-
PHP中类的继承和用法实例分析,php实例分析_PHP教程
-
PHP中isset与array_key_exists的区别实例分析_PHP教程
-
php实现简单的语法高亮函数实例分析
-
PHP中header函数的用法及其注意事项详解_php实例
-
php定义一个参数带有默认值的函数实例分析_PHP
-
PHP 在数组中搜索给定的简单实例 array_search 函数,数组array_search
-
PHP中的函数嵌套层数限制分析_PHP
-
php中关于魔法函数以及魔法常量的使用详解
-
PHP中array_keys和array_unique函数源码的分析_PHP