Home  >  Article  >  Backend Development  >  PHP check date function checkdate usage example

PHP check date function checkdate usage example

WBOY
WBOYOriginal
2016-07-25 08:45:481279browse
语法

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

演示代码

  1. echo "2/29/1900";
  2. checkdate (2, 29, 1900)?print " is Valid":print " is not valid";
  3. echo "n";
  4. echo "2/29/2000";
  5. checkdate (2, 29, 2000)?print " is Valid":print " is not valid";
  6. echo "n";
  7. echo "2/29/2100";
  8. checkdate (2, 29, 2100)?print " is Valid":print " is not valid";
  9. echo "n";
  10. echo "4/30/2008";
  11. checkdate (4, 30, 2008)?print " is Valid":print " is not valid";
  12. echo "n";
  13. echo "4/31/2008";
  14. checkdate (4, 31, 2008)?print " is Valid":print " is not valid";
  15. echo "n";
  16. ?>
复制代码

输出结果如下

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
php, checkdate


Statement:
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