Home > Backend Development > PHP Tutorial > How to set the judgment time in the page to determine whether the activity time has started (page read configuration)

How to set the judgment time in the page to determine whether the activity time has started (page read configuration)

一个新手
Release: 2023-03-16 13:12:02
Original
1688 people have browsed it

cakephp

strtotime: Parse English text date and time into Unix timestamp

<?php 
    if(time()<strtotime(Configure::read("Shuang_START"))):?> alert(&#39;活动尚未开始~&#39;);
    return;
    <?php endif;
    ?> <?php if(time()>strtotime(Configure::read("Shuang_END"))):?> alert(&#39;活动已经结束~&#39;);
    return;
    <?php endif;
?>
Copy after login

The above is the detailed content of How to set the judgment time in the page to determine whether the activity time has started (page read configuration). For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template