bench3.php

来自「视频监控网络部分的协议ddns,的模块的实现代码,请大家大胆指正.」· PHP 代码 · 共 59 行

PHP
59
字号
<?php// Bench script of Cache_Lite_Function// $Id: bench3.php,v 1.3 2002/09/28 18:05:29 fab Exp $require_once('Cache/Lite/Function.php');$options = array(    'caching' => true,    'cacheDir' => '/tmp/',    'lifeTime' => 10);$cache = new Cache_Lite_Function($options);$data = $cache->call('function_to_bench', 23, 66);echo($data);$object = new bench();$object->test = 666;$data = $cache->call('object->method_to_bench', 23, 66);echo($data);$data = $cache->call('bench::static_method_to_bench', 23, 66);echo($data);function function_to_bench($arg1, $arg2) {    for($i=0;$i<10000;$i++) {        $tmp = md5(md5(md5('Loosing time...')));    }    echo "This is the output of the function function_to_bench($arg1, $arg2) !<br>";    return "This is the result of the function function_to_bench($arg1, $arg2) !<br>";}class bench{    var $test;    function method_to_bench($arg1, $arg2)    {        for($i=0;$i<10000;$i++) {            $tmp = md5(md5(md5('Loosing time...')));        }        echo "\$obj->test = $this->test and this is the output of the method \$obj->method_to_bench($arg1, $arg2) !<br>";        return "\$obj->test = $this->test and this is the result of the method \$obj->method_to_bench($arg1, $arg2) !<br>";            }        function static_method_to_bench($arg1, $arg2) {        for($i=0;$i<10000;$i++) {            $tmp = md5(md5(md5('Loosing time...')));        }        echo "This is the output of the function static_method_to_bench($arg1, $arg2) !<br>";        return "This is the result of the function static_method_to_bench($arg1, $arg2) !<br>";    }}?>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?