Heim > Fragen und Antworten > Hauptteil
$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
PHP中文网2017-05-24 11:35:57
解决:
class Input{
public function post($key){
if(isset($_POST[$key])){
$val=$_POST[$key];
return $val;
}
}
$input=new Input();
$upSet=$input->post("demo");
var_dump($upSet);