我正在从MySql DataBase中检索DateTime,但它的格式与倒计时不同。
mysql具有以下日期格式:2015-07-07 00:00:00
倒计时只有admmits:YYYY / MM / DD,MM / DD / YYYY,YYYY / MM / DD hh:mm:ss ,MM / DD / YYYY ......:mm:ss
productos.js
$('#clock').countdown("2015/10/10", function(event) {
var totalHours = event.offset.totalDays * 24 + event.offset.hours;
$(this).html(event.strftime(totalHours + ' hr %M min %S sec'));
});
的index.php
<div id="clock" name="clock"></div>
<h5 id="fecha"> <?php echo $producto['fecha_creacion'];?> </h5>
如何解决此问题?
答案 0 :(得分:0)
最后,我使用了moment.js,因为php date有5小时差异,我需要一个准确的倒计时。