time_basic.phpt 223 B

12345678910111213141516
  1. --TEST--
  2. Test return type and value for expected input time()
  3. --FILE--
  4. <?php
  5. /*
  6. * proto int time(void)
  7. * Function is implemented in ext/date/php_date.c
  8. */
  9. var_dump(time());
  10. ?>
  11. ===DONE===
  12. --EXPECTF--
  13. int(%d)
  14. ===DONE===