- 论坛徽章:
- 0
|
是Pob论坛项目中做统计用的一个子类,在Pob发布以前提前共享一下:)
- <?php
- /******************************************************************************\
- *
- * File Timer.php
- * @author bighan <see-me@21cn.com>;
- * @package System
- * @version 1.0.0
- * @date 2004/04/23 18:42:37
- *
- \******************************************************************************/
- class Timer
- {
- var $zero;
- var $scale = 6;
- var $start;
- var $expiry;
- var $advance;
- function __construct($scale = 6)
- {
- $this->;zero = $this->;getZero();
- $this->;scale = abs((int)$scale);
- }
- function &newInstance($scale = 6)
- {
- $instance =& getInstance('timer');
- if (!is_object($instance)) {
- $instance =& new Timer($scale);
- if (!XMD_ZE2) {
- $instance->;__construct($scale);
- setInstance($instance);
- }
- return $instance;
- }
- return $instance;
- }
- function getZero()
- {
- $date = getdate();
- $timer = mktime(0, 0, 0, $date['mon'], $date['mday'] , $date['year'], 0);
- //$date = time();
- //$timer = mktime(0, 0, 0, date('m', $date), date('d', $date) , date('y', $date), 0);
- return $timer;
- }
- function elapse($now = NULL)
- {
- if (is_null($now)) $now = $this->;floatMicroTime();
- if (extension_loaded('bcmath')) {
- return bcsub($now, $this->;zero, $this->;scale);
- } else {
- return sprintf("%.{$this->;$scale}f", ($now - $this->;zero));
- }
- }
- function setExpiry($time)
- {
- $this->;start = $this->;elapse();
- $this->;expiry = $time;
- }
- function setAdvance($time)
- {
- $this->;advance = $time;
- }
- function timeout()
- {
- if (isset($this->;expiry)) {
- $elapsed = $this->;elapse() - $this->;start;
- $total = $this->;expiry + $this->;advance;
- $total = sprintf("%.0{$this->;scale}f", $total);
- if ($elapsed >; $total) {
- return $elapsed;
- } else {
- return FALSE;
- }
- }
- return TRUE;
- }
- function floatMicroTime()
- {
- //if (PHP_VERSION >;= '4.0.4') {
- // $time = array_sum(explode(" ",microtime()));
- //} else {
- list($usec, $sec) = explode(" ",microtime());
- $time = (float)$usec + (float)$sec;
- //}
- return $time;
- }
- }
- /**
- * @example
- * $timer =& new Timer();
- * $timer->;setExpiry(0.1);
- * for ($i = 0; $i < 100000000000000; $i++) {
- if (!($t = $timer->;timeout())) {
- echo "This run num: ", $i, "<br \>;\n";
- } else {
- echo "for end! use time: ", $t, "<br \>;\n";
- }
- }
- */
- ?>;
复制代码 |
|