2015-10-20 61 views
-2

使用這個我可以得到日期和時間的差異。如何將日期時差轉換爲倒計時?

$first_date = new DateTime(「2012-11-30 17:03:30」); 
$second_date = new DateTime(「2012-12-21 00:00:00」); 

$difference = $first_date->diff($second_date); 

echo format_interval($difference); 

如何將它從靜態轉換爲倒計時器來運行?

+0

使用jQuery/JS? – Epodax

+0

以較簡單的爲準 –

+1

我不知道哪一個你覺得更簡單,我不會爲你寫。 – Epodax

回答

1

試試這個jQuery插件

<script type="text/javascript" src="/path/to/jquery.countdown.js"></script> 

<script type="text/javascript"> 
$(function() { 
    $('.yourCountdownContainer').countdown({ 
     date: "June 7, 2087 15:03:26" 
    }); 
}); 
</script> 

形成更多的細節enter link description here