summaryrefslogtreecommitdiff
path: root/ext/date/tests/time_basic.phpt
blob: 7b93e9dac2ab2c5830842db4ee2ef34364a274d4 (plain)
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===