2 | 3 | 4 | 5 | 6

// 現在日付から○日の取得
echo '1日前' . date('Y/m/d', strtotime('-1 day'));
echo '1ヶ月前' . date('Y/m/d', strtotime('-1 month'));
echo '1年前' . date('Y/m/d', strtotime('-1 year'));
echo '1週間前' . date('Y/m/d', strtotime('-1 week'));
...続きを表示


2 | 3 | 4 | 5 | 6

▲上に戻る