使用PHP 的日期格式
输入日期为"1568145593000",我需要使用php转换为m-d-y格式
有人知道如何转换吗?谢谢=(。
echo date('m-d-Y', 1568145593000 / 1000);
将时间戳除以1000,得到以秒为单位的时间戳。
参见:
PHP日期https://www.php.net/manual/en/function.date.php对于格式化字符:https://www.php.net/manual/en/datetime.format.php(向下滚动一点(