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