1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 16:22:37 +01:00
Files
archived-php-src/ext/date/tests/time_basic.phpt

16 lines
223 B
PHP

--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===