月末・月初を出力する

PHP
覚え書き 今月 月初 echo date("Y-m-01", time() ); 今月 月末 echo date("Y-m-t", time() ); 前月 月初 echo date("Y-m-01", strtotime("-1 month") ); 前月 月末 echo date("Y-m-t", strotime("-1 month") ); 例 「キャンペーンは11月30日まで」のようにする場合
<?php echo date("m月t日まで", time() ); ?>
Spread the love
2016.11.01(火)