$input=new Input();
$upSet=$input->post();
var_dump($upSet);
class Input{
function post($key){
if(isset($_POST[$key])){
$val=$_POST[$key];
return $val;
}
}
报错
Warnung: Fehlendes Argument 1 für Input::post(),
Hinweis: Undefinierte Variable: Schlüssel
解决:
function post($key = 'default'){}
Input类下面少写个闭合的花括号 }
另外post方法里没有传参