microtime

(PHP 4, PHP 5, PHP 7)

microtime���ص�ǰ Unix ʱ�����΢����

˵��

microtime ([ bool $get_as_float ] ) : mixed

microtime() ��ǰ Unix ʱ����Լ�΢����������������֧�� gettimeofday() ϵͳ���õIJ���ϵͳ�¿��á�

�������ʱ������ѡ�������������� "msec sec" �ĸ�ʽ����һ���ַ��������� sec ���� Unix ��Ԫ��0:00:00 January 1, 1970 GMT�������ڵ�������msec ��΢�벿�֡��ַ����������ֶ�������Ϊ��λ���صġ�

��������� get_as_float ����������ֵ�ȼ��� TRUE��microtime() ������һ����������

Note: get_as_float ������ PHP 5.0.0 �¼ӵġ�

Example #1 �� microtime() �Խű������м�ʱ

<?php
/**
 * Simple function to replicate PHP 5 behaviour
 */
function microtime_float()
{
    list(
$usec$sec) = explode(" "microtime());
    return ((float)
$usec + (float)$sec);
}

$time_start microtime_float();

// Sleep for a while
usleep(100);

$time_end microtime_float();
$time $time_end $time_start;

echo 
"Did nothing in $time seconds\n";
?>

�μ� time()��