̃Gg[͂ĂȃubN}[Nɒlj

PHP :: イディオム / 月末の日付を取得する



<?php
 
// format文字:t = 指定した月の日数(28 から 31)を返却。
echo '2007年02月の月末:'.date('Y/m/t', strtotime('2007-02')).PHP_EOL;
echo '2008年02月の月末:'.date('Y/m/t', strtotime('2008-02'));
 
?>

▼結果

2007年02月の月末:2007/02/28
2008年02月の月末:2008/02/29



programming/php/idiom/end_of_month.txt