当前位置:主页 > 软件编程 > PHP代码 >

php判断时间戳是否为今天实例讲解

时间:2022-07-29 09:23:29 | 栏目:PHP代码 | 点击:

 本教程操作环境:windows7系统、PHP7.1版、DELL G3电脑

php判断指定时间戳是不是今天的方法

实现思想:

实现代码:

<?php
header('content-type:text/html;charset=utf-8');
$timestamp = time();  // 获取一个时间戳
if(date('Ymd', $timestamp) == date('Ymd')) {
    echo '是今天';  
}else{
    echo '不是今天';  
}
?>

输出结果

是今天

您可能感兴趣的文章:

相关文章