PHP实现在对象之外访问其私有属性private及保护属性protected的方法
这篇文章主要介绍了PHP实现在对象之外访问其私有属性private及保护属性protected的方法,简单介绍了php public、private及protected的功能及用法,并结合实例形式分析了php在对象之外访问其私有属性private及保护属性protected的方法,需要的朋友可以参考下
本文实例讲述了PHP实现在对象之外访问其私有属性private及保护属性protected的方法。分享给大家供大家参考,具体如下:
比较经典的用法示例如下:
";
}
private function b(){
echo "function b
";
}
protected function c(){
echo "function c
";
}
}
//子类
class child extends father{
function d(){
parent::a();//调用父类的a方法
}
function e(){
parent::c(); //调用父类的c方法
}
function f(){
parent::b(); //调用父类的b方法
}
}
$father=new father();
$father->a();
// $father->b(); //显示错误 外部无法调用私有的方法 Call to protected method father::b()
// $father->c(); //显示错误 外部无法调用受保护的方法Call to private method father::c()
$chlid=new child();
$chlid->d();
$chlid->e();
// $chlid->f();//显示错误 无法调用父类private的方法 Call to private method father::b()
?>
运行结果:
在对象之外,PHP访问私有及保护属性实现方法如下:
a=88;
$result->b=99;
return $result;
}
public function show()
{
echo $this->a;
echo $this->b;
}
}
$test = new yunke;
$test->show();
$test2=$test->merge();
$test2->show();
输出:
更多关于PHP相关内容感兴趣的读者可查看本站专题:《》、《》、《》、《》、《》、《》及《PHP常见数据库操作技巧汇总》
希望本文所述对大家PHP程序设计有所帮助。