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