我有javascript使用getTime()将我视图中的日期转换为时间字符串.然后将其存储为我的选择表单中的选项值.一旦它传递给PHP,我该如何将其转换为PHP日期?
我已经做好了:
echo date("m/d/Y", '1345618799000');
1345618799000 = Tue Aug 21 2012
解决方法:
date("Format here (see documentation"), round($_POST["time_field"]/1000));
更新了,谢谢Yoshi.