File:
[ELWIX - Embedded LightWeight unIX -] /
embedaddon /
php /
ext /
standard /
tests /
time /
001.phpt
Revision
1.1.1.1 (vendor branch):
download - view:
text,
annotated -
select for diffs -
revision graph
Tue Feb 21 23:48:04 2012 UTC (13 years ago) by
misho
Branches:
php,
MAIN
CVS tags:
v5_4_3elwix,
v5_4_29p0,
v5_4_29,
v5_4_20p0,
v5_4_20,
v5_4_17p0,
v5_4_17,
v5_3_10,
HEAD
php
--TEST--
microtime() function
--SKIPIF--
<?php
if (!function_exists('microtime')) die('skip microtime() not available');
die('warn system dependent');
?>
--FILE--
<?php
$passed = 0;
$failed = 0;
$last_m = 0;
$last_t = 0;
$result = '';
set_time_limit(0);
for ($i=1;$i<=100000;$i++) {
list($micro,$time)=explode(" ",microtime());
if ($time > $last_t || ($time == $last_t && $micro >= $last_m)) {
$passed++;
} else if ($failed++ <=10) {
$result .= sprintf('%06d', $i).": $time $micro < $last_t $last_m\n";
}
$last_m = $micro;
$last_t = $time;
}
echo "Passed: $passed\n";
echo "Failed: $failed\n";
echo $result;
?>
--EXPECT--
Passed: 100000
Failed: 0
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>