PHP gettimeofday() 函数
PHP gettimeofday() 函数
实例
返回当前时间:
<?php
// Print the array from gettimeofday()
print_r(gettimeofday());
// Print the float from gettimeofday()
echo gettimeofday(true);
?>
// 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
|
---|---|
PHP 版本: | 4+ |
更新日志: | PHP 5.1.0:新增了return_float 参数。 |
PHP Date/Time 参考手册
相关文章
- PHP 变量
- PHP 数据类型
- PHP 常量
- PHP $_POST 变量
- PHP date() 函数
- PHP Cookie
- PHP 过滤器
- PHP array() 函数
- PHP array_count_values() 函数
- PHP array_diff_assoc() 函数
- PHP array_filter() 函数
- PHP array_intersect_key() 函数
- PHP array_keys() 函数
- PHP array_pop() 函数
- PHP array_udiff_assoc() 函数
- PHP ksort() 函数
- PHP Error 和 Logging 函数
- PHP Filter 函数
- PHP Libxml 函数
- PHP 5 Math 函数