这篇文章主要讲解了“php时间转unix时间戳的代码怎么写”,文中的讲解内容简单清晰,易于学习与理解,下面请大家跟着小编的思路慢慢深入,一起来研究和学习“php时间转unix时间戳的代码怎么写”吧!
使用strtotime函数
strtotime函数是PHP中内置的日期函数之一,它可以将一个日期时间字符串转换为UNIX时间戳。例如:
$date = '2022-04-01 12:00:00'; $unix_time = strtotime($date); echo $unix_time;
输出结果将是:
1648849200,它代表了2022年4月1日12点整的UNIX时间戳。
使用DateTime类
DateTime是PHP中的一个内置类,它提供了很多有用的日期和时间处理方法,包括将日期时间对象转换为UNIX时间戳。
$date_str = '2022-04-01 12:00:00'; $datetime = new DateTime($date_str); $unix_time = $datetime->format('U'); echo $unix_time;
在这里,我们创建了一个DateTime对象,并使用format方法来将对象转换为UNIX时间戳格式。输出结果与上例相同:
1648849200。
使用mktime函数
mktime函数是PHP中的另一个内置函数,它可以根据给出的时间参数返回对应的UNIX时间戳。例如:
$hour = 12; $minute = 0; $second = 0; $month = 4; $day = 1; $year = 2022; $unix_time = mktime($hour, $minute, $second, $month, $day, $year); echo $unix_time;
这段代码将给出了2022年4月1日12:00:00的时间参数,并使用mktime函数将其转换为UNIX时间戳。输出结果与前两个例子相同。