改变时间格式php

时间:2011-06-15 09:01:58

标签: php datetime

我需要获取日期/选择器生成的日期/时间格式,该日期/选择器当前以此格式输出06-15-2011 09:35:32

我需要的格式与函数time() = 1308126939

生成的格式相同

我到处寻找这个答案而找不到。

3 个答案:

答案 0 :(得分:0)

尝试使用strtotime()函数将文本日期时间表示法转换为Unix时间戳。

答案 1 :(得分:0)

time()的时间戳是一种unix格式,表示自1970年1月1日以来的秒数。它可以在date()中复制为$timestamp = date("U");

您应该可以使用strtotime()命令对其进行转换。

$myDate = "06-15-2011 0-9:35:32"

$timestamp = strtotime($myDate)

然后,您可以使用date()函数以其他方式继续格式化。

答案 2 :(得分:0)

使用strtotime功能

echo strtotime('06-15-2011 09:35:32');
祝你好运!