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