strtotime 問題
親愛なる皆さん
ループを取得したいです。つまり、現在の日付に基づいて、ループするたびに 1 日が減ります。
<!-- Code highlighting produced by Actipro CodeHighlighter (freeware) http://www.CodeHighlighter.com/ --> for($i=0;$i<10;$i++) { $current_date=date("Y-m-d", strtotime("-$i day")); }
/*問題ない 2012-02-28 2012-02-27 2012-02-26 2012-02-25 2012-02-24 2012-02-23 2012-02-22 2012-02-21 2012-02-20 2012-02-19 */ for($i=0;$i<10;$i++){ $current_date=date("Y-m-d", strtotime("-$i day")); echo $current_date.'<br/>'; <div class="clear"></div>