zoukankan      html  css  js  c++  java
  • php实现进度条原理

    PHP实现进度条的原理:

    模版替换,在页面设置一个标识,轮子自己的页面,不发请求给服务器,由服务器端获得进度,然后替换该页面标识,达到进度条效果。

    页面代码

    1

    2

    3

    4

    5

    6

    7

    8

    9

    10

    11

    12

    13

    14

    15

    16

    17

    18

    19

    20

    21

    22

    23

    24

    25

    26

    27

    28

    29

    30

    31

    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">

    <html>

    <head>

    <meta http-equiv="Expires" content="Fri, Jan 01 1900 00:00:00 GMT">

    <meta http-equiv="Pragma" content="no-cache">

    <meta http-equiv="Cache-Control" content="no-cache">

    <meta http-equiv="Content-Type" content="text/html; charset=utf-8">

    <meta http-equiv="Lang" content="en">

    <meta name="author" content="">

    <meta http-equiv="Reply-to" content="@.com">

    <meta name="generator" content="PhpED 5.8">

    <meta name="description" content="">

    <meta name="keywords" content="">

    <meta name="creation-date" content="01/01/2009">

    <meta name="revisit-after" content="15 days">

    <title>进度条</title>

    <script type="jquery.min.js"></script>

    <script type="text/javascript">

    function test(){

        location.reload();

        setTimeOut('test()',1000)

    }

    </script>

    </head>

      

    <body οnlοad="test()">

      <div id="test">0</div>

       

      <div id="" style=" 100;">{%a%}</div>

    </body>

    </html>

    服务器代码

    1

    2

    3

    4

    5

    6

    7

    8

    9

    10

    11

    12

    13

    14

    15

    16

    17

    <?php

      

     for($i = 0;$i < 6;$i++){

          echo $i.'<br/>';

          echo str_repeat('      ' ,2024);

          $url = '/t/test.php';

          header("Location: " . $url.'&id='.$i);

          $read_url = realpath('.'.$url);

          $content = file_get_contents('D:/phpnow/htdocs11/design/t/test.php');

         $rr = preg_replace('/{%(.*)%}/','{%'.$i.'%}',$content);

         file_put_contents('D:/phpnow/htdocs11/design/t/test.php',$rr);

          ob_flush();

          flush();

          sleep(1);

      }

     

    ?>

    [大理石平板]如何进行大理石平板的高宽比测量?

  • 相关阅读:
    javascript获取客户端网卡MAC地址和IP地址和计算机名
    Spring 架包功能详解
    MyEclipse安装插件的另一种方法
    (转载)Struts Spring Hibernate (SSH) 整合实例
    jsp 输出流写中文出现乱码的解决办法
    通过Ssh协议连接到服务器执行执行的指令
    贝叶斯过滤算法
    IntelliJ IDEA 9.0.3配置tomcat5
    (spring+hibernate)java.lang.NoSuchMethodError
    struts1.2总结
  • 原文地址:https://www.cnblogs.com/furuihua/p/11477102.html
Copyright © 2011-2022 走看看