cakephp

strtotime:将英文文本日期时间解析为 Unix 时间戳
1 2 3 4 5 6 7 8 | <?php
if (time()< strtotime (Configure::read( "Shuang_START" ))):?> alert('活动尚未开始~');
return ;
<?php endif ;
?> <?php if (time()> strtotime (Configure::read( "Shuang_END" ))):?> alert('活动已经结束~');
return ;
<?php endif ;
?>
|
登录后复制
以上是如何在页面中设置判断时间活动时间是否开始(页面读配置) 的详细内容。更多信息请关注PHP中文网其他相关文章!