Home  >  Article  >  Backend Development  >  PHP interview questions: Access control_PHP tutorial

PHP interview questions: Access control_PHP tutorial

WBOY
WBOYOriginal
2016-07-13 17:14:56830browse

Access control of properties or methods is achieved by adding the keywords public, protected or private in front. Class members defined by public can be accessed from anywhere; class members defined by protected can be accessed by subclasses and parent classes of the class in which they are located (of course, the class in which the member is located can also be accessed); and by private The defined class members can only be accessed by the class in which they are located

 代码如下 复制代码
class Foo
{
    private $name = 'hdj';
    public function getName(){
        return $this->name;
    }
}
 
class Bar extends Foo
{
    public $name = 'deeka';
}
 
$bar = new Bar;
var_dump($bar->name);
var_dump($bar->getName());

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/628939.htmlTechArticleAccess control of properties or methods is achieved by adding the keywords public, protected or private in front. Class members defined by public can be accessed from anywhere; by...
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn