You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
378 B
17 lines
378 B
<?php
|
|
//设置中国上海时区
|
|
date_default_timezone_set('Asia/Shanghai');
|
|
echo date('Y-m-d H:i:s',time());
|
|
|
|
//获取当前日期时间
|
|
echo'<pre>';
|
|
var_dump(getdate());
|
|
|
|
//检查日期时间是否有效
|
|
$ret=checkdate(3,32,2022);
|
|
if ($ret==TRUE) {
|
|
echo '日期有效'.'<br>';
|
|
}else{
|
|
echo '日期无效'.'<br>';
|
|
}
|
|
?>
|