Smarty上でstrtotimeを使って、タイムスタンプと比較したい!

スマーティー上で簡単に実装できます。
[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を使って、タイムスタンプと比較したい!” への1件のコメント

  1. のアバター
    匿名

    たすかったぜ!

コメントを残す

メールアドレスが公開されることはありません。 が付いている欄は必須項目です