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

  1. --TEST--
  2. Test return type and value for expected input microtime()
  3. --FILE--
  4. <?php
  5. /*
  6. * proto mixed microtime([bool get_as_float])
  7. * Function is implemented in ext/standard/microtime.c
  8. */
  9. var_dump(microtime());
  10. var_dump(microtime(true));
  11. var_dump(microtime(false));
  12. ?>
  13. ===DONE===
  14. --EXPECTF--
  15. string(%d) "%s %s"
  16. float(%s)
  17. string(%d) "%s %s"
  18. ===DONE===