diff options
Diffstat (limited to 'ext/standard/tests/bug64370_var2.phpt')
-rw-r--r-- | ext/standard/tests/bug64370_var2.phpt | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/ext/standard/tests/bug64370_var2.phpt b/ext/standard/tests/bug64370_var2.phpt index 3618a46980..601f8b93e0 100644 --- a/ext/standard/tests/bug64370_var2.phpt +++ b/ext/standard/tests/bug64370_var2.phpt @@ -5,15 +5,15 @@ Test bug #64370 sequential microtime(true) calls $i = 0; while(100000 > $i++) { - $m0 = microtime(true); - $m1 = microtime(true); - $d = $m1 - $m0; + $m0 = microtime(true); + $m1 = microtime(true); + $d = $m1 - $m0; - /*echo "$d\n";*/ + /*echo "$d\n";*/ - if ($d < 0) { - die("failed in {$i}th iteration"); - } + if ($d < 0) { + die("failed in {$i}th iteration"); + } } echo "ok\n"; ?> |