如何通过此函数从JS返回转换datetime
var now = new Date();
output: Sun Feb 24 2013 01:26:47 GMT+0800 (MYT)
成为php可读格式,例如date(YmdHis)
?
答案 0 :(得分:1)
从Javascript函数返回UNIX时间戳:
Math.round(new Date().getTime() / 1000) //returns number of seconds since epoch
然后在PHP的日期函数中使用它:
$yourJsTime = $_GET['jsTime']; //depends on how you pass your js timestamp
date_default_timezone_set('UTC');
echo date('YmdHis', $yourJsTime);