xref: /PHP-7.4/ext/date/tests/time_basic.phpt (revision d679f022)
1--TEST--
2Test return type and value for expected input time()
3--FILE--
4<?php
5/*
6 * proto int time(void)
7 * Function is implemented in ext/date/php_date.c
8*/
9
10var_dump(time());
11
12?>
13===DONE===
14--EXPECTF--
15int(%d)
16===DONE===
17