ryxeo-glpi-git / inc / timer.class.php @ b67d8923
Historique | Voir | Annoter | Télécharger (2,24 ko)
1 |
<?php
|
---|---|
2 |
/*
|
3 |
* @version $Id: timer.class.php 7763 2009-01-06 18:44:50Z moyo $
|
4 |
-------------------------------------------------------------------------
|
5 |
GLPI - Gestionnaire Libre de Parc Informatique
|
6 |
Copyright (C) 2003-2009 by the INDEPNET Development Team.
|
7 |
|
8 |
http://indepnet.net/ http://glpi-project.org
|
9 |
-------------------------------------------------------------------------
|
10 |
|
11 |
LICENSE
|
12 |
|
13 |
This file is part of GLPI.
|
14 |
|
15 |
GLPI is free software; you can redistribute it and/or modify
|
16 |
it under the terms of the GNU General Public License as published by
|
17 |
the Free Software Foundation; either version 2 of the License, or
|
18 |
(at your option) any later version.
|
19 |
|
20 |
GLPI is distributed in the hope that it will be useful,
|
21 |
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
22 |
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
23 |
GNU General Public License for more details.
|
24 |
|
25 |
You should have received a copy of the GNU General Public License
|
26 |
along with GLPI; if not, write to the Free Software
|
27 |
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
28 |
--------------------------------------------------------------------------
|
29 |
*/
|
30 |
|
31 |
// ----------------------------------------------------------------------
|
32 |
// Original Author of file: Julien Dombre
|
33 |
// Purpose of file:
|
34 |
// ----------------------------------------------------------------------
|
35 |
|
36 |
if (!defined('GLPI_ROOT')){ |
37 |
die("Sorry. You can't access directly to this file"); |
38 |
} |
39 |
|
40 |
|
41 |
/**
|
42 |
* Timer class for debug
|
43 |
*/
|
44 |
class Script_Timer { |
45 |
//! Timer value
|
46 |
var $timer=0; |
47 |
|
48 |
|
49 |
/**
|
50 |
* Constructor
|
51 |
**/
|
52 |
function Script_Timer (){ |
53 |
return true; |
54 |
} |
55 |
|
56 |
//! Start the Timer
|
57 |
function Start_Timer (){ |
58 |
$this->timer=microtime (); |
59 |
|
60 |
return true; |
61 |
} |
62 |
/**
|
63 |
* Get the current time of the timer
|
64 |
*
|
65 |
* @param $decimals number of decimal of the result
|
66 |
* @return time past from Start_Timer
|
67 |
*
|
68 |
*/
|
69 |
function Get_Time ($decimals = 3) |
70 |
{ |
71 |
// $decimals will set the number of decimals you want for your milliseconds.
|
72 |
|
73 |
// format start time
|
74 |
$start_time = explode (" ", $this->timer); |
75 |
$start_time = $start_time[1] + $start_time[0]; |
76 |
// get and format end time
|
77 |
$end_time = explode (" ", microtime ()); |
78 |
$end_time = $end_time[1] + $end_time[0]; |
79 |
|
80 |
return formatNumber ($end_time - $start_time, false, $decimals); |
81 |
} |
82 |
} |
83 |
?>
|