我正在使用代码:
$old_month = strtolower(date("m", mktime(date('H'), date('i'), date('s'), (date('m')-12),date('d'), date('Y'))));
$old_year = strtolower(date("Y", mktime(date('H'), date('i'), date('s'), (date('m')-12), date('d'), date('Y'))));
if ( $profile_stats['month'] < $old_month && $profile_stats['year'] == $old_year
|| $profile_stats['month'] == date('m') && $profile_stats['year'] == date('Y') )
If 循环应该取上个月的值..ie 现在是 10 月..so If 应该搜索 sept ie。9
我怎样才能做到这一点。
请提出任何解决方案。