php检查日期函数checkdate用法实例_PHP

WBOY
Release: 2016-06-01 11:06:21
Original
1117 people have browsed it

本文实例讲述了php检查日期函数checkdate用法。分享给大家供大家参考。具体分析如下:

php中可以使用checkdate函数校验日期的正确性。

语法

integer checkdate (int %Month, int $Day, int $Year);
Copy after login

演示代码

<&#63;PHP
echo "2/29/1900";
checkdate (2, 29, 1900)&#63;print " is Valid":print " is not valid";
echo "\n";
echo "2/29/2000";
checkdate (2, 29, 2000)&#63;print " is Valid":print " is not valid";
echo "\n";
echo "2/29/2100";
checkdate (2, 29, 2100)&#63;print " is Valid":print " is not valid";
echo "\n";
echo "4/30/2008";
checkdate (4, 30, 2008)&#63;print " is Valid":print " is not valid";
echo "\n";
echo "4/31/2008";
checkdate (4, 31, 2008)&#63;print " is Valid":print " is not valid";
echo "\n";
&#63;>
Copy after login

输出结果如下

2/29/1900 is not valid
2/29/2000 is Valid
2/29/2100 is not valid
4/30/2008 is Valid
4/31/2008 is not valid
Copy after login

希望本文所述对大家的php程序设计有所帮助。

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template