码迷,mamicode.com
首页 > 其他好文 > 详细

一个方法得到哪年的哪个月的天数?

时间:2015-12-09 00:16:00      阅读:125      评论:0      收藏:0      [点我收藏+]

标签:

参数为年份和月份,输出结果为指定月的天数

只需函数strtotime()

<?php
Function day_count($year,$month){ Echo date(
"t",strtotime($year."-".$month)); } echo day_count(2015,2);

 

一个方法得到哪年的哪个月的天数?

标签:

原文地址:http://www.cnblogs.com/137dawn/p/5031240.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!