目录

PHP hrtime() 函数

❮ PHP 其他参考

示例

返回系统的高分辨率时间:

<html>
<body>
<?php
echo hrtime();
?>
</body>
</html>

上面代码的输出可能是这样的:

233568471904329635


定义和用法

hrtime() 函数返回系统的高分辨率时间。


语法

hrtime( return_as_num)

参数值

Parameter Description
return_as_num Optional. If set to TRUE, this function will return the high resolution time as array or number. Default is FALSE

技术细节

返回值: 返回纳秒或整数数组
PHP 版本: 7.3+

❮ PHP 其他参考