mirror of
https://github.com/Znote/ZnoteAAC.git
synced 2025-04-30 03:09:22 +02:00
Saving some microtime vars in init for more accurate page render calculations.
This commit is contained in:
parent
ded093d8c5
commit
2a38590b96
@ -1,5 +1,10 @@
|
|||||||
<?php if (version_compare(phpversion(), '5.3.3', '<')) die('PHP version 5.3.3 or higher is required.');
|
<?php if (version_compare(phpversion(), '5.3.3', '<')) die('PHP version 5.3.3 or higher is required.');
|
||||||
|
|
||||||
|
$l_time = microtime();
|
||||||
|
$l_time = explode(' ', $l_time);
|
||||||
|
$l_time = $l_time[1] + $l_time[0];
|
||||||
|
$l_start = $l_time;
|
||||||
|
|
||||||
$time = time();
|
$time = time();
|
||||||
$version = '1.5_SVN';
|
$version = '1.5_SVN';
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user