mirror of
https://github.com/php/php-src.git
synced 2026-03-26 17:22:15 +01:00
17 lines
224 B
PHP
17 lines
224 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===
|