if ((!$_GET['month']) && (!$_GET['year'])) {
$month = date ("n");
$year = date ("Y");
} else {
$month = $_GET['month'];
$year = $_GET['year'];
}
它显示Notice: Undefined index: month in....
。
我知道如果我使用error_reporting(null);
上面的代码,通知不会出现,但是有没有办法修复这个错误?