スマーティー上で簡単に実装できます。
[code lang=”text”]
{if $smarty.now >= "2013-01-01 00:00:00"|strtotime}
2013年あけましておめでとう!
{else}
年があけるまでッ 後ッ もう少しッ!
{/if}
[/code]
もしくは
[code lang=”text”]
{assign var=timer value="2013-01-01 00:00:00"|strtotime}
{if $smarty.now >= $timer}
2013年あけましておめでとう!
{else}
年があけるまでッ 後ッ {$timer – $smarty.now}秒ッ!
{/if}
[/code]
とかね。
Smarty上でstrtotimeを使って、タイムスタンプと比較したい!
コメント
“Smarty上でstrtotimeを使って、タイムスタンプと比較したい!” への1件のコメント
-
たすかったぜ!
コメントを残す