• 实例首页
  • 自学教程
  • IT工具箱
xxxxxxxxxx
 
1
<!DOCTYPE html>
2
<html>
3
<head>
4
<meta charset="utf-8">
5
<title>PHP gettimeofday() 函数 实例 - 自学教程(runoops.com)</title>
6
</head>
7
<body>
8
​
9
<?php
10
    // Print the array from gettimeofday()
11
    print_r(gettimeofday());
12
    // Print the float from gettimeofday()
13
    echo '<br />';
14
    echo gettimeofday(true);
15
    ?>
16
​
17
</body>
18
​
19
</html>