classInput.php
<?php
header("Content-Type:text/html; charset=UTF-8");
class Input{
function post($key){
$val=$_POST[$key];
return $val;
}
}
?>
save.php
<?php
header("Content-Type:text/html; charset=UTF-8");
include 'classInput.php';
$input=new Input();
$userName=$input->post('userName');
$msg=$input->post('msg');
然后我直接访问save.php,报notice的错误,请问能否在classInput.php对传过来的参数进行判断啊
首先要判断是否为post请求,如果为post请求,再判断值存在的情况。
把你的类作了下修改