PHP 액세스 수정자 예
2829 단어 webdevphpbeginnersjavascript
따라서 PHP 액세스 수정자 예, PHP의 액세스 지정자, PHP의 기본 액세스 수정자, oop의 액세스 수정자 및 PHP 액세스 수정자를 살펴보겠습니다.
세 가지 액세스 수정자가 있습니다.
Example 1: Public
<?php
class parent
{
public $name="techsolutionstuff";
function_display()
{
echo $this->name."<br/>";
}
}
class child extends parent
{
function show()
{
echo $this->name;
}
}
$obj= new child;
echo $obj->name."<br/>";
$obj->function_display();
$obj->show();
?>
산출:
techsolutionstuff
techsolutionstuff
techsolutionstuff
Example 2: Private
<?php
class Techsolutionstuff
{
private $name="techsolutionstuff";
private function show()
{
echo "This is private method of parent class";
}
}
class child extends Techsolutionstuff
{
function show1()
{
echo $this->name;
}
}
$obj= new child;
$obj->show();
$obj->show1();
?>
출력 :
Fatal error: Call to private method Techsolutionstuff::show()....
Example 3: Protected
<?php
class Techsolutionstuff
{
protected $a=200;
protected $b=100;
function add()
{
echo $sum=$this->a+$this->b."<br/>";
}
}
class child extends Techsolutionstuff
{
function sub()
{
echo $sub=$this->a-$this->b."<br/>";
}
}
$obj= new child;
$obj->add();
$obj->sub();
?>
출력 :
300
100
Reference
이 문제에 관하여(PHP 액세스 수정자 예), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/techsolutionstuff/php-access-modifiers-example-3ejl텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)