夏夜,蟋蟀劲鸣,星光灿烂,月光清澈。孩提时的晨在小山上快活的玩味着每一朵花,每一株草,亦或躺在绿油油的草地数星星。一切都是那么的美好,那么的惬意。
本文实例讲述了PHP实现在对象之外访问其私有属性private及保护属性protected的方法。分享给大家供大家参考,具体如下:
public 表示全局的访问权限,类内部外部子类都可以访问;
private表示私有的访问权限,只有本类内部可以使用;
protected表示受保护的访问权限,只有本类或子类或父类中可以访问;
比较经典的用法示例如下:
<?php //父类 class father{ public function a(){ echo "function a<br/>"; } private function b(){ echo "function b<br/>"; } protected function c(){ echo "function c<br/>"; } } //子类 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() ?>
运行结果:
function a function a function c
在对象之外,php访问私有及保护属性实现方法如下:
class yunke { protected $a = 55; private $b = 66; public function merge() { $result = clone $this; $result->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();
输出:
55668899
希望本文所述对大家PHP程序设计有所帮助。
以上就是PHP实现在对象之外访问其私有属性private及保护属性protected的方法。在死者身前转过视线或是替他合上眼睛,就像和爱人接吻时忍不住要闭上眼一样自然。——爱和死亡都让人不忍过分直视。更多关于PHP实现在对象之外访问其私有属性private及保护属性protected的方法请关注haodaima.com其它相关文章!