阅读量:0
是的,PHP的strtotime()
函数支持闰年判断。strtotime()
函数可以将任何英文文本日期时间描述解析为一个 Unix 时间戳(自1970-01-01 00:00:00 GMT起的秒数)。在处理日期和时间时,它会自动考虑闰年的因素。
例如,如果你想要获取2020年2月29日(闰年)的时间戳,你可以使用以下代码:
$timestamp = strtotime("2020-02-29"); echo $timestamp; // 输出:1582934400
这里,strtotime()
函数正确地解析了闰年2020年2月29日,并返回了相应的Unix时间戳。如果你尝试使用非闰年的2月29日,strtotime()
函数将返回false,表示无法解析该日期。
$timestamp = strtotime("2021-02-29"); var_dump($timestamp); // 输出:bool(false)
所以,你可以放心使用strtotime()
函数处理包含闰年的日期和时间。