判断活动时间是否开始

 strtotime:将英文文本日期时间解析为 Unix 时间戳

复制代码
<?php if(time()<strtotime(Configure::read("Shuang_START"))):?>
        alert('活动尚未开始~');return;
    <?php endif;?>
    <?php if(time()>strtotime(Configure::read("Shuang_END"))):?>
        alert('活动已经结束~');return;
    <?php endif;?>
复制代码
原文地址:https://www.cnblogs.com/jiaoda/p/7493339.html