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.

16 lines
378 B

  1. <?php
  2. //设置中国上海时区
  3. date_default_timezone_set('Asia/Shanghai');
  4. echo date('Y-m-d H:i:s',time());
  5. //获取当前日期时间
  6. echo'<pre>';
  7. var_dump(getdate());
  8. //检查日期时间是否有效
  9. $ret=checkdate(3,32,2022);
  10. if ($ret==TRUE) {
  11. echo '日期有效'.'<br>';
  12. }else{
  13. echo '日期无效'.'<br>';
  14. }
  15. ?>