PHP/Date/microtime — различия между версиями

Материал из Web эксперт
Перейти к: навигация, поиск
м (1 версия)
 
(нет различий)

Текущая версия на 07:03, 26 мая 2010

mixed microtime ( [bool float_output] ) returns a highly accurate reading of the current time

 
<?
echo microtime( );
?>



Timing with microtime()

 
<?php
$start = microtime(true);
for ($i = 0; $i < 1000; $i++) {
    preg_match("/age=\d+/",$_SERVER["QUERY_STRING"]);
}
$end = microtime(true);
$elapsed = $end - $start;