blob: 4d49960f907665fb2ddcd4cb858507d08de25bae (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
--TEST--
Test return type and value for expected input time()
--FILE--
<?php
/*
* Function is implemented in ext/date/php_date.c
*/
var_dump(time());
?>
--EXPECTF--
int(%d)
|