PHP中的类能不能对接收过来的参数进行判断
世界只因有你
世界只因有你 2017-05-16 13:04:59
0
4
384
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对传过来的参数进行判断啊

世界只因有你
世界只因有你

Antworte allen(4)
漂亮男人
header("Content-Type:text/html; charset=UTF-8");
class Input{
    function post($key){
                if( isset($_POST[$key]))
                    $val=$_POST[$key];
                else
                    $val=null;
                return $val;
    }
}
巴扎黑
<?php
header("Content-Type:text/html; charset=UTF-8");
class Input{
    function post($key){
        if(isset($_POST[$key])){
                $val=$_POST[$key];
                return $val;
        }
    }
}
?>
我想大声告诉你

首先要判断是否为post请求,如果为post请求,再判断值存在的情况。

阿神

把你的类作了下修改

<?php
class Input{
    var $_Get='';
    var $_Post='';
    function __construct($data){
        print_r($data);
        $this->_Get  = $data['get'];
        $this->_Post = $data['post'];
    }
    function post($key){
        $data = $this->_Get;
        $val  = $data[$key];
        return $val;
    }
}
//然后调用的时候
include 'classInput.php';
$input=new Input(['get'=>$_GET]);
$userName=$input->post('userName');
echo $userName;
//这样就好了把 
Beliebte Tutorials
Mehr>
Neueste Downloads
Mehr>
Web-Effekte
Quellcode der Website
Website-Materialien
Frontend-Vorlage