Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
特定の日付から今日までの経過月数を数える方法を探しています。たとえば、januariから今日(6月)までは「5」になります
1年後であれば機能するはずなので、その年を含める必要があります。
date_diff()を使用する
$df = date_diff(date_create('01/08/2012'),date_create('05/08/2012')); echo $df->format("Month: %M");