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