欢迎访问服务器技术网-www.fuwuqijishu.com

PHP gettimeofday() 函数

PHP fuwuqijishu 2年前 (2022-09-04) 67次浏览 0个评论 扫描二维码
文章目录[隐藏]

PHP gettimeofday() 函数

PHP Date/Time 参考手册

实例

返回当前时间:

<?php
// Print the array from gettimeofday()
print_r(gettimeofday());

//
Print the float from gettimeofday()
echo gettimeofday(true);
?>


定义和用法

gettimeofday() 函数返回当前时间。

语法

gettimeofday(return_float);

参数 描述
return_float 可选。当设置为 TRUE 时,返回一个浮点数,而不是一个数组。默认是 FALSE。

技术细节

返回值: 默认返回一个关联数组,带有如下数组键名:R

  • [sec] – Unix 纪元以来的秒
  • [usec] – 微秒
  • [minuteswest] – 格林尼治以西的分
  • [dsttime] – 夏令时修正类型

如果 return_float 参数设置为 true,则返回一个浮点数。

PHP 版本: 4+
更新日志: PHP 5.1.0:新增了return_float 参数。


PHP Date/Time 参考手册

喜欢 (0)
发表我的评论
取消评论
表情 贴图 加粗 删除线 居中 斜体 签到

Hi,您需要填写昵称和邮箱!

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址

Warning: error_log(/www/wwwroot/fuwiqijishu/wp-content/plugins/spider-analyser/#log/log-2213.txt): failed to open stream: No such file or directory in /www/wwwroot/fuwiqijishu/wp-content/plugins/spider-analyser/spider.class.php on line 2900