📌  相关文章
📜  在日期中转换 unix 时间戳 - PHP 代码示例

📅  最后修改于: 2022-03-11 14:54:11.802000             🧑  作者: Mango

代码示例2
//Our date string. The format is Y-m-d H:i:s
$date = '2019-04-01 10:32:00';

//Convert it into a Unix timestamp using strtotime.
$timestamp = strtotime($date);

//Print it out.
echo $timestamp;