本文主要是介绍php在对象之外访问其私有属性private及保护属性protected的特例,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
代码如下,在这种情况下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在对象之外访问其私有属性private及保护属性protected的特例的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!