发布于 2023-01-03 21:24:31 浏览 324 次
语法:
strtotime($data);
参数:
$data:日期格式,例如“2023-01-03 20:12:10”。
案例:
<?php
date_default_timezone_set("PRC");
$time = strtotime("2023-01-03 20:12:10"); // 将指定日期转成时间戳
echo $time;
?>
输出:
1672747930
strtotime()