summaryrefslogtreecommitdiff
path: root/ext/date/tests/time_basic.phpt
blob: d97b73e2167c263deaed95a213550dab1a012cd1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
--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());

?>
--EXPECTF--
int(%d)