时间:2021-07-01 10:21:17 帮助过:46人阅读

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;?>以上就是如何判断时间是否开始 的详细内容,更多请关注Gxl网其它相关文章!