当前位置:Gxlcms > PHP教程 > PHP根据年月获取季度

PHP根据年月获取季度

时间:2021-07-01 10:21:17 帮助过:88人阅读

<无详细内容>
  1. function getQuarterByMonth($date){
  2. $month = substr($date,-2);
  3. $Q = ceil($month/3);
  4. return $Q;
  5. }
  6. ?>

人气教程排行