PHP object-oriented guide (9) Access types_PHP tutorial
13. Access type The
type access modifier allows developers to restrict access to class members. This is a new feature of PHP5, but
is a good feature of the OOP language. And most OOP languages already support this feature. PHP5 supports the following three access modifiers:
public (public, default), private (private) and protected (protected).
public public modifier, members in the class will have no access restrictions, all external members can access (read and write)
This class member (including member attributes and member methods), in all versions before PHP5 In PHP, all members of a class are
public, and in PHP5, if a member of a class does not specify a member access modifier, it will be considered public.
Example: public $name;
public function say(){};
private private modifier, defined as a private member, is visible to all members in the same class, that is,
There is no access restriction; but external code of this class is not allowed to change or even read operations, and subclasses of this class cannot access private-modified members.
Example: private $var1 = 'A'; //Attribute
private function getValue(){} //Function
protected protected member modifier, members modified as protected cannot be accessed outside the class code access. However,
has access rights to subclasses of this class and can read and write properties and methods. External code of this subclass, including its
subclasses, do not have permission to access its properties and methods.
Example: protected $name;
protected function say(){};
private protected public
In the same class√ √ √In subclasses of
class√ √
All External member√
Code snippet
* Define MyClass
*/
class MyClass{
public $public = 'Public';
protected $protected = 'Protected';
private $private = 'Private';
function printHello (){
echo $this->public;
echo $this->protected;
echo $this->private;
}
}
$obj = new MyClass();
echo $obj->public; //Works
echo $obj->protected; // Fatal Error
echo $obj->private; // Fatal Error
$obj->printHello(); // Shows Public, Protected and Private
/**
* Define MyClass2
*/
class MyClass2 extends MyClass{
//We can redeclare the public and protected method, but not private
protected $protected = 'Protected2';
function printHello(){
echo $this->public;
echo $this->protected;
echo $this->private;
}
}
$obj2 = new MyClass2();
echo $obj->public; //Works
echo $obj2->private ; // Undefined
echo $obj2->protected; // Fatal Error
$obj2->printHello(); // Shows Public, Protected2, not Private
?>
Code snippet
* Define MyClass
*/
class MyClass{
// Constructors must be public
public function __construct() { }
// Declare a public method
public function MyPublic() { }
// Declare a protected method
protected function MyProtected() { }
// Declare a private method
private function MyPrivate() { }
// This is public
function Foo( ) {
$this->MyPublic();
$this->MyProtected();
$this->MyPrivate();
}
}
$ myclass = new MyClass;
$myclass->MyPublic(); //Works
$myclass->MyProtected(); // Fatal Error
$myclass->MyPrivate(); // Fatal Error
$myclass->Foo(); // Public, Protected and Private work
/**
* Define MyClass2
*/
class MyClass2 extends MyClass{
// This is public
function Foo2(){
$this->MyPublic();
$this->MyProtected();
$this->MyPrivate(); // Fatal Error
}
}
$myclass2 = new MyClass2;
$myclass2->MyPublic(); // Works
$myclass2->Foo2(); // Public and Protected work, not Private
?>
In addition, when a subclass overrides a method of a parent class, you should also pay attention to it. The access permission of the method in the subclass must not be lower than that of the parent class
The access permission of the overridden method must be higher than or equal to the parent class. Access permissions for class methods.
For example, if the access permission of the parent class method is protected, then the permissions to be overridden in the subclass must be protected
and public. If the parent class method is public, then the method to be overridden in the subclass can only be public. , in short, the
method in the subclass must always be higher than or equal to the access rights of the overridden method in the parent class.

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

In this chapter, we will understand the Environment Variables, General Configuration, Database Configuration and Email Configuration in CakePHP.

PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals. This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati

To work with date and time in cakephp4, we are going to make use of the available FrozenTime class.

To work on file upload we are going to use the form helper. Here, is an example for file upload.

In this chapter, we are going to learn the following topics related to routing ?

CakePHP is an open-source framework for PHP. It is intended to make developing, deploying and maintaining applications much easier. CakePHP is based on a MVC-like architecture that is both powerful and easy to grasp. Models, Views, and Controllers gu

Visual Studio Code, also known as VS Code, is a free source code editor — or integrated development environment (IDE) — available for all major operating systems. With a large collection of extensions for many programming languages, VS Code can be c

Validator can be created by adding the following two lines in the controller.
