php根据年月获取季度的方法
程序员文章站
2022-06-30 09:24:21
复制代码 代码如下:
<?php
function getquarterbymonth($date){
$month = substr($date,-2);
$q = ceil($month/3);
return $q;
}
?>
复制代码 代码如下:
<?php
function getquarterbymonth($date){
$month = substr($date,-2);
$q = ceil($month/3);
return $q;
}
?>