mirror of
https://github.com/php/php-src.git
synced 2024-11-25 19:05:31 +08:00
16 lines
223 B
PHP
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===
|