In this example we will see PHP access modifiers example. In PHP default access modifier is public. PHP provide different types of modifiers like private, public or protected. Properties and methods can have access modifiers which control where they can be accessed.
There are three access modifiers:
public
- the property or method can be accessed from everywhere. This is defaultprotected
- the property or method can be accessed within the class and by classes derived from that classprivate
- the property or method can ONLY be accessed within the class
<?php
class parent
{
public $name="websolutionstuff";
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();
?>
Output :
websolutionstuff
websolutionstuff
websolutionstuff
<?php
class Websolutionstuff
{
private $name="websolutionstuff";
private function show()
{
echo "This is private method of parent class";
}
}
class child extends Websolutionstuff
{
function show1()
{
echo $this->name;
}
}
$obj= new child;
$obj->show();
$obj->show1();
?>
Output :
Fatal error: Call to private method Websolutionstuff::show()....
<?php
class Websolutionstuff
{
protected $a=200;
protected $b=100;
function add()
{
echo $sum=$this->a+$this->b."<br/>";
}
}
class child extends Websolutionstuff
{
function sub()
{
echo $sub=$this->a-$this->b."<br/>";
}
}
$obj= new child;
$obj->add();
$obj->sub();
?>
Output :
300
100
You might also like :
In this article, we will see how to generate QR code in angular 13. In this example, we will use the angularx-qrcod...
Jun-09-2022
In this article, we will see how to add a tooltip in react js. Tooltips display informative text when users hover o...
Sep-12-2022
In this article, we will see how to merge two collections in laravel 8 or laravel 9. The Illuminate\Support\Co...
Jul-18-2022
In this tutorial, I will show you laravel 9 toastr notifications example. Using toastr.js you can display a success...
Feb-23-2022