如何将这种日期格式转换为时间戳?
给定日期格式:wed jun 14 15:45:47 0800 2023
要用 php 将此日期格式转换为时间戳,可以简单地使用 strtotime 函数:
<?php var_dump(strtotime('Wed Jun 14 15:45:47 +0800 2023')); ?>
strtotime 函数将返回给定日期格式的时间戳值。
立即学习“PHP免费学习笔记(深入)”;
如何将这种日期格式转换为时间戳?
给定日期格式:wed jun 14 15:45:47 0800 2023
要用 php 将此日期格式转换为时间戳,可以简单地使用 strtotime 函数:
<?php var_dump(strtotime('Wed Jun 14 15:45:47 +0800 2023')); ?>
strtotime 函数将返回给定日期格式的时间戳值。
立即学习“PHP免费学习笔记(深入)”;