我正在尝试建立一个图表来显示学生的进度,仅将最后几周(星期一)显示为m / d。这是我尝试过的:
$here = date( 'W', strtotime('this Monday'));
$then = date('W', strtotime('-70 days', strtotime('this Monday')));
for($i = $then; $i<=$here; $i++)
{
$temp = date('W', strtotime($i));
$tempa = strtotime($temp);
$newd = date('m/d', $tempa);
list .=",".$newd);
}
当前的迭代为我提供了一系列的01/01。有人可以帮忙吗?谢谢。
慕慕森
鸿蒙传说