|
|
1.1 misho 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:
10: var_dump(time());
11:
12: ?>
13: ===DONE===
14: --EXPECTF--
15: int(%d)
16: ===DONE===