PHP time()
函数用于返回当前时间的10位时间戳,也是服务器的时间。
语法
int time ( void )
例子
<?php
$today=time();
echo($today . "\n");
echo(date("Y-m-d",$today));
?>
输出:
1679103919
2023-03-18
2023-03-18
PHP time()
函数用于返回当前时间的10位时间戳,也是服务器的时间。
int time ( void )
<?php
$today=time();
echo($today . "\n");
echo(date("Y-m-d",$today));
?>
输出: