zoukankan      html  css  js  c++  java
  • PHP

    效果:

    首先在includes文件夹下编写,global.func.php函数库:

    <?php
    
        /*
        *     Version:1.0
        *    CreateTime:2015年11月11日
        *    Author:HF_Ultrastrong
        */
        
        /**
         *_runtirm():使用来生成程序耗时
         *@access public:公开访问
         *@return float :返回值为浮点型
         *
         * */
        function _runtime(){
            $mtime = microtime();
            $time = explode(' ', $mtime);
            return $time[1]+$time[0];
        }
    
    ?>

    然后在common.inc.php公共文件中引用:

    <?php
    
        /*
        *     Version:1.0
        *    CreateTime:2015年11月11日
        *    Author:HF_Ultrastrong
        */
        
        //判断页面是否为非法调用
        if (!defined('IN_TG')) {
            //不是正常调用,跳转到404页面
            header('Location:'.'../error/404.html');
        }
        
        //定义相对于项目的绝对路径,用以加快调用页面的速度。
        define('ROOT_PATH', substr(dirname(__FILE__),0,-8));
        
        //判断PHP版本是否太低
        if (PHP_VERSION < '4.1.0') {
            echo 'Version is to Low!';
            exit;
        }
        
        //引入函数库global.func.php
        require ROOT_PATH.'/includes/global.func.php';
    ?>

    然后将common公共文件在index.php主文件中引用:

    之后在header.inc.php中生成开始时间:

    • 将生成时间存入常量

     

    之后再footer.inc.php文件写下,结束时间,然后相减,得到耗时。

    <?php
    
        /*
        *     Version:1.0
        *    CreateTime:2015年11月11日
        *    Author:HF_Ultrastrong
        */
        //判断页面是否为非法调用
        if (!defined('IN_TG')) {
            //不是正常调用,跳转到404页面
            header('Location:'.'../error/404.html');
        }
    ?>
    <div id="footer">
        <p>本程序执行耗时:<?php echo '[ '.round(_runtime()- START_TIME,5).'s ]'; ?></p>
        <p>版权所有,违者必究 --- HF_Ultrastrong@copyright</p>
    </div>
  • 相关阅读:
    PyCharm小技巧
    How to install torcs package in Debian
    QT4.8.6静态编译
    Debian初识(选择最佳镜像发布站点加入source.list文件)
    Dev-C++ 小问题锦集
    ubuntu 12.04lts 安装mysql ,并通过QT连接
    win7下安装ubuntu14.04lts 双系统
    cmake打印变量值
    驾车常识:小轿车灯光
    汽车点火开关的功能介绍
  • 原文地址:https://www.cnblogs.com/KTblog/p/4958098.html
Copyright © 2011-2022 走看看