PHP受保护的类和私有类什么区别

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP受保护的类和私有类什么区别相关的知识,希望对你有一定的参考价值。

受保护的继承后可以访问,私有的只能在该类中访问,不会被继承访问
class Man{
protected $name=‘lee‘;//受保护
private $age=123;//私有
function __construct(){
echo $this->name;//lee
echo $this->age;//123

}

}
class Girl extends Man{
function __construct(){
echo $this->name;//lee
echo $this->age;//不会出现123,

}

}

new Man();

new Girl();


<?php
class Man{
    protected $name=‘lee‘;//受保护
    private    $age=123;//私有
    function __construct(){
        echo $this->name;//lee
        echo $this->age;//123

    }

}
class Girl extends Man{
    function __construct(){
        echo $this->name;//lee
        echo $this->age;//不会出现123,

    }

}

new Man();

new Girl();

技术分享

以上是关于PHP受保护的类和私有类什么区别的主要内容,如果未能解决你的问题,请参考以下文章

受保护和私有有啥区别? [复制]

php访问控制

受保护的与私有的析构函数

打字稿:使父类中的公共方法成为派生类中的私有/受保护方法

“私有”和“受保护的内部”有啥区别?

设置为默认类型时如何测试私有/受保护的类变量