blob: 89bbd8b4bbc011a5e63364f7e1eaadb148d35c21 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
--TEST--
Test return type and value for expected input microtime()
--FILE--
<?php
/*
* Function is implemented in ext/standard/microtime.c
*/
var_dump(microtime());
var_dump(microtime(true));
var_dump(microtime(false));
?>
--EXPECTF--
string(%d) "%s %s"
float(%s)
string(%d) "%s %s"
|