php if else show statement - 依赖于日期。显示日期= 12月。 2,2010年还是不到?

时间:2010-12-03 18:33:38

标签: php date if-statement

我最近更新了我的照片库框架。但是我仍然需要在特定日期之前的故事中使用旧的“javascript文件”,例如:2010年12月2日。(故事在CMS /动态中)

我在考虑一个“if else”声明,但无法做到正确。

if date(Dec. 2, 2010) < CURDATE() {
                 show this (which is the older JS files) ; }
else {
                 show the new javascript files; }

如果我不需要(为了速度),我不喜欢加载两个JS文件。

提前致谢。

2 个答案:

答案 0 :(得分:2)

<?php
if (time() > strtotime('2010-12-02')) {
  echo '<script type="text/javascript" src="/js/highslide/highslide.js"></script> 
        <link rel="stylesheet" type="text/css" href="/js/highslide/highslide.css" /> 
        <script type="text/javascript">
            hs.graphicsDir = "/js/highslide/graphics/";
            hs.wrapperClassName = "wide-border";
            hs.showCredits = false;
        </script>';
}
else {
  echo 'old stuff';
}

答案 1 :(得分:1)

中的某些内容
if date(Dec. 2, 2010) < CURDATE() {
     <script src="old_js.js" />
else {
     <script src="new_js.js" />