我有javascript使用getTime()将我视图中的日期转换为时间字符串。然后将其存储为我的选择表单中的选项值。一旦传递给php,我该如何将其转换为php日期?
我做了:
echo date("m/d/Y", '1345618799000');
1345618799000 = Tue Aug 21 2012
答案 0 :(得分:6)
您使用PHP的date()函数:
date("Format here (see documentation"), round($_POST["time_field"]/1000));
更新了,谢谢Yoshi。
答案 1 :(得分:0)
您可以使用PHP的strtotime()
将任何字符串更改为Unix时间戳;
strtotime()