• 实例首页
  • 自学教程
  • IT工具箱
xxxxxxxxxx
 
1
<!DOCTYPE html>
2
<html>
3
<head>
4
<meta charset="utf-8">
5
<title>PHP checkdate() 函数 实例 - 自学教程(runoops.com)</title>
6
</head>
7
<body>
8
​
9
<?php
10
    var_dump(checkdate(12,31,-400));echo "<br>";
11
    var_dump(checkdate(2,29,2003));echo "<br>";
12
    var_dump(checkdate(2,29,2004));
13
?>
14
</body>
15
​
16
</html>