You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

20 lines
356 B

--TEST--
Test return type and value for expected input microtime()
--FILE--
<?php
/*
* proto mixed microtime([bool get_as_float])
* Function is implemented in ext/standard/microtime.c
*/
var_dump(microtime());
var_dump(microtime(true));
var_dump(microtime(false));
?>
===DONE===
--EXPECTF--
string(%d) "%s %s"
float(%s)
string(%d) "%s %s"
===DONE===