Home Backend Development PHP Tutorial PHP object-oriented guide (9) Access types_PHP tutorial

PHP object-oriented guide (9) Access types_PHP tutorial

Jul 21, 2016 pm 03:44 PM
php Complete strategy right object develop member of kind type access conduct limit For

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


Copy code The code is as follows:
/* *
* 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

Copy code The code is as follows:
/**
* 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.

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/320635.htmlTechArticle13. Access type The access modifier allows developers to restrict access to class members, which is PHP5 New feature, but a good feature of the OOP language. And most O...
Statement of this Website
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

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
4 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

CakePHP Project Configuration CakePHP Project Configuration Sep 10, 2024 pm 05:25 PM

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

PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian Dec 24, 2024 pm 04:42 PM

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

CakePHP Date and Time CakePHP Date and Time Sep 10, 2024 pm 05:27 PM

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

CakePHP File upload CakePHP File upload Sep 10, 2024 pm 05:27 PM

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

CakePHP Routing CakePHP Routing Sep 10, 2024 pm 05:25 PM

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

Discuss CakePHP Discuss CakePHP Sep 10, 2024 pm 05:28 PM

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

How To Set Up Visual Studio Code (VS Code) for PHP Development How To Set Up Visual Studio Code (VS Code) for PHP Development Dec 20, 2024 am 11:31 AM

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

CakePHP Creating Validators CakePHP Creating Validators Sep 10, 2024 pm 05:26 PM

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

See all articles