PHP自定义函数(12)--- 获得一个月的天数
$timestamp = strtotime('October');
//也可以这么写$timestamp = strtotime('2012-02');
$days = date('t',$timestamp);
echo $days; //31
当前页面是本站的「Google AMP」版。查看和发表评论请点击:完整版 »
$timestamp = strtotime('October');
//也可以这么写$timestamp = strtotime('2012-02');
$days = date('t',$timestamp);
echo $days; //31
当前页面是本站的「Google AMP」版。查看和发表评论请点击:完整版 »