mirror of
https://github.com/php/php-src.git
synced 2026-03-28 02:02:32 +01:00
16 lines
137 B
PHP
16 lines
137 B
PHP
--TEST--
|
|
Test hrtime() return array
|
|
--FILE--
|
|
<?php
|
|
|
|
var_dump(hrtime());
|
|
|
|
?>
|
|
--EXPECTF--
|
|
array(2) {
|
|
[0]=>
|
|
int(%d)
|
|
[1]=>
|
|
int(%d)
|
|
}
|