php計算相差幾個月的方法:1、使用strtotime()函數將兩個指定日期轉換為時間戳形式;2、使用「date('m',時間戳)」語句取得到兩個指定日期的月份;3、將獲取到的兩個月相減即可計算相差幾個月。
本教學操作環境:windows7系統、PHP7.1版、DELL G3電腦
php計算指定日期間相差幾個月
具體實作方法如下:
<?php header("Content-type:text/html;charset=utf-8"); $strtotime1=strtotime('2021-01-06'); $strtotime2=strtotime('2021-10-06'); $y=date('Y',$strtotime1); $ys=date('Y',$strtotime2); $m=(int)date('m',$strtotime1); $ms=(int)date('m',$strtotime2); $chaY=$ys-$y; //月份相差多少 $chaM=12-$m + $ms; //相差一年就加12 $yearmeth=$chaM + (($chaY-1) *12); echo $yearmeth; ?>
輸出結果:
PHP影片教學》
以上是php怎麼計算指定日期間相差幾個月的詳細內容。更多資訊請關注PHP中文網其他相關文章!