php中time()返回的时间戳是以秒为单位;
javacsript中的getTime()返回的时间是以毫秒为单位;
php-date:
<?php
echo date("y-m-d");
?>
javascript-date:
<script>
var d=new Date();
d.getFullYear();
d.getMonth();
d.getDate();
</script>
好像php的date对象返回的时间戳是秒,javascript的Date对象返回的时间戳是毫秒;
php中time()返回的时间戳是以秒为单位;
javacsript中的getTime()返回的时间是以毫秒为单位;
php-date:
<?php
echo date("y-m-d");
?>
javascript-date:
<script>
var d=new Date();
d.getFullYear();
d.getMonth();
d.getDate();
</script>
好像php的date对象返回的时间戳是秒,javascript的Date对象返回的时间戳是毫秒;