mirror of
https://github.com/Znote/ZnoteAAC.git
synced 2025-10-14 02:14:53 +02:00
microtime as float (#502)
This commit is contained in:
@@ -1,11 +1,9 @@
|
||||
<footer>
|
||||
© Znote AAC.
|
||||
<?php
|
||||
$time = microtime();
|
||||
$time = explode(' ', $time);
|
||||
$time = $time[1] + $time[0];
|
||||
$finish = microtime(true);
|
||||
$finish = $time;
|
||||
$total_time = round(($finish - $start), 4);
|
||||
echo 'Server date and clock is: '. getClock(false, true) .' Page generated in '. $total_time .' seconds. ';
|
||||
?>
|
||||
</footer>
|
||||
</footer>
|
||||
|
Reference in New Issue
Block a user