我正在尝试并仍然想知道,如何获得包含当月所有日期的数组,它应该包含所有日期格式:年 – 月 – 日.谢谢你的帮助!
尝试:
// for each day in the month for($i = 1; $i <= date('t'); $i++) { // add the date to the dates array $dates[] = date('Y') . "-" . date('m') . "-" . str_pad($i,2,'0',STR_PAD_LEFT); } // show the dates array var_dump($dates);