首页 > 开发 > PHP > 正文

动态显示服务器运行程序的进度条

2024-05-04 22:58:51
字体:
来源:转载
供稿:网友

<?php
set_time_limit(0);
$width = 500;   //显示的进度条长度,单位 px
$total = 1000; //显示的步骤数,可以用数据库中实际取得的数组数代替
$pix = $width / $total; //每条记录的操作所占的进度条单位长度
$progress = 0;  //当前进度条长度
?>
<!doctype html public "-//w3c//dtd xhtml 1.0 transitional//en" "http://www.w3.org/tr/xhtml1/dtd/transitional.dtd">
<html>
<head>
   <title>动态显示服务器运行程序的进度条</title>
   <meta http-equiv="content-type" content="text/html; charset=gb2312" />
   <style>
   body, div input { font-family: tahoma; font-size: 9pt }
   </style>
   <script language="javascript">
   <!--
   function updateprogress(smsg, iwidth)
   {
       document.getelementbyid("status").innerhtml = smsg;
       document.getelementbyid("progress").style.width = iwidth + "px";
       document.getelementbyid("percent").innerhtml = parseint(iwidth / <?php echo $width; ?> * 100) + "%";
    }
   //-->
   </script>   
</head>

<body>
<div >
   <div><font color="gray">如下进度条的动态效果由服务器端 php 程序结合客户端 javascript 程序生成。</font></div>
   <div >
       <div id="progress" ></div>           
   </div>
   <div id="status">&nbsp;</div>
   <div id="percent" >0%</div>
</div>
<?php
flush();    //将输出发送给客户端浏览器
for ($j=0;$j<$total;$j++){
   //  在此处使用空循环模拟较为耗时的操作,实际应用中需将其替换;
   for ($i = 0; $i < 100000; $i++) {
       ;;
    }
?>
<script language="javascript">
   updateprogress("正在操作第<?php echo $j; ?>条数据,请稍候....", <?php echo min($width, intval($progress)); ?>);
</script>
<?php
   flush();    //将输出发送给客户端浏览器,使其可以立即执行服务器端输出的 javascript 程序。
   $progress += $pix;   
}   //end foreach
//  最后将进度条设置成最大值 $width,同时显示操作完成
?>
<script language="javascript">
   updateprogress("操作完成!", <?php echo $width; ?>);
</script>
<?php
flush();
?>
</body>
</html>

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表