我得到:
未定义变量:密码
未定义变量:主机
未定义变量:用户
我只是好奇为什么我会收到这样的通知,尽管该变量已在类的私有部分中定义。
我不能在成员函数中使用类的私有数据成员吗(因为这会破坏 OOP 的整个概念)?
php文件是:
class data_base //helps handling permissins
{
private $host;
private $user;
private $password;
public function feed_data($hst, $usr, $pwd)
{
$host=$hst;
$user=$usr;
$password=$pwd;
}
public function get_data()
{
$info=array("host"=>" ", "user"=>" ", "password"=>" ");
$info['host']=$host;
$info['user']=$user;
$info['password']=$password;
return $info;
}
}
$user1=new data_base;
$user2=new data_base;
$user1->feed_data("localhost", "root", ""); //enter details for user 1 here
$user2->feed_data("", "", ""); //enter details for user 2 here
$perm_add=$user1->get_data();
$perm_view=$user2->get_data();