Home  >  Article  >  Backend Development  >  How to tell if time has started

How to tell if time has started

一个新手
一个新手Original
2017-09-12 10:38:341199browse

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;?>

The above is the detailed content of How to tell if time has started. For more information, please follow other related articles on the PHP Chinese website!

Statement:
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