首页 > 开发 > PHP > 正文

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

2024-05-04 23:32:56
字体:
来源:转载
供稿:网友

这篇文章主要介绍了php检查日期函数checkdate用法,实例分析了php中checkdate函数的使用技巧,非常具有实用价值,需要的朋友可以参考下

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

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

语法

 

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

演示代码

 

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

输出结果如下

 

 
  1. 2/29/1900 is not valid 
  2. 2/29/2000 is Valid 
  3. 2/29/2100 is not valid 
  4. 4/30/2008 is Valid 
  5. 4/31/2008 is not valid 

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

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表