Analysis of PHP’s self keyword
Someone in the PHP group asked about the usage of the self keyword, and the answer was comparison Obvious:
You cannot use this to call non-member functions in a static member function, but you can use self to call static member functions/variables/constants;
Other member functions can use self to call static member functions and non-static member functions.
As the discussion deepened, I found that self is not that simple. In view of this, this article first compares and differentiates several keywords, and then summarizes the usage of self.
If you want to completely understand self, you must distinguish it from parent, static, and this.
The following are comparisons
parent
The distinction between self and parent is relatively easy: parent refers to the parent class/base class The hidden method (or variable), self refers to its own method (or variable).
For example, calling the parent class constructor in the constructor:
class Base { public function __construct() { echo "Base contructor!", PHP_EOL; } } class Child { public function __construct() { parent::__construct(); echo "Child contructor!", PHP_EOL; } } new Child; // 输出: // Base contructor! // Child contructor!
static
The general purpose of static is to modify functions or variables to make them class functions and Class variables can also modify variables within functions to extend their life cycle to the life cycle of the entire application.
But its association with self is a new use introduced since PHP 5.3: static delayed binding.
With the static delayed binding function of static, the belonging class can be dynamically determined at runtime.
For example:
class Base { public function __construct() { echo "Base constructor!", PHP_EOL; } public static function getSelf() { return new self(); } public static function getInstance() { return new static(); } public function selfFoo() { return self::foo(); } public function staticFoo() { return static::foo(); } public function thisFoo() { return $this->foo(); } public function foo() { echo "Base Foo!", PHP_EOL; } } class Child extends Base { public function __construct() { echo "Child constructor!", PHP_EOL; } public function foo() { echo "Child Foo!", PHP_EOL; } } $base = Child::getSelf(); $child = Child::getInstance(); $child->selfFoo(); $child->staticFoo(); $child->thisFoo();
The program output is as follows:
Base constructor!
Child constructor!
Base Foo!
Child Foo!
Child Foo!
In terms of function references, the difference between self and static is: for static member functions, self points to the current class of the code, and static points to the calling class; for non-static members Function, self suppresses polymorphism, points to the member function of the current class, static is equivalent to this, and dynamic points to the function of the calling class.
The three keywords parent, self, and static are very interesting when combined together. They point to the parent class, current class, and subclass respectively, which has a bit of a "past, present, and future" flavor.
this
self and this are the most discussed combinations and are also the most likely to be misused.
The main differences between the two are as follows:
this cannot be used in static member functions, self Yes;
For access to static member functions/variables, it is recommended to use self instead of $this:: or $this->;
For access to non-static member variables, You cannot use self, only this;
This must be used when the object has been instantiated, self has no such restriction;
When used within a non-static member function, self suppresses polymorphism Behavior refers to the function of the current class; and this refers to the overriding function of the calling class (if any).
The purpose of self
After reading the differences between the three keywords mentioned above, is the purpose of self immediately apparent? To sum up in one sentence, that is: self always points to "the current class (and class instance)".
In detail:
Replace the class name and reference the static member variables and static functions of the current class;
Suppress polymorphic behavior and reference The function of the current class rather than the implementation covered in the subclass;
slot
Among these keywords, only This needs to be added with the $ sign and must be added. Obsessive-compulsive disorder means it is very uncomfortable;
Non-static member functions cannot be called through $this-> in static member functions, but they can be called through self::, and before calling the function It can still run smoothly without using $this->. This behavior seems to behave differently in different PHP versions, but it is ok in the current 7.3;
在静态函数和非静态函数中输出self,猜猜结果是什么?都是string(4) "self",迷之输出;
return $this instanceof static::class;会有语法错误,但是以下两种写法就正常: $class = static::class; return $this instanceof $class; // 或者这样: return $this instanceof static;
所以这是为什么啊?!
$class = static::class;
return $this instanceof $class;
// 或者这样:
return $this instanceof static;
推荐教程:《PHP视频教程》
The above is the detailed content of Detailed explanation of the self keyword in PHP. For more information, please follow other related articles on the PHP Chinese website!

Long URLs, often cluttered with keywords and tracking parameters, can deter visitors. A URL shortening script offers a solution, creating concise links ideal for social media and other platforms. These scripts are valuable for individual websites a

Laravel simplifies handling temporary session data using its intuitive flash methods. This is perfect for displaying brief messages, alerts, or notifications within your application. Data persists only for the subsequent request by default: $request-

This is the second and final part of the series on building a React application with a Laravel back-end. In the first part of the series, we created a RESTful API using Laravel for a basic product-listing application. In this tutorial, we will be dev

Laravel provides concise HTTP response simulation syntax, simplifying HTTP interaction testing. This approach significantly reduces code redundancy while making your test simulation more intuitive. The basic implementation provides a variety of response type shortcuts: use Illuminate\Support\Facades\Http; Http::fake([ 'google.com' => 'Hello World', 'github.com' => ['foo' => 'bar'], 'forge.laravel.com' =>

The PHP Client URL (cURL) extension is a powerful tool for developers, enabling seamless interaction with remote servers and REST APIs. By leveraging libcurl, a well-respected multi-protocol file transfer library, PHP cURL facilitates efficient execution of various network protocols, including HTTP, HTTPS, and FTP. This extension offers granular control over HTTP requests, supports multiple concurrent operations, and provides built-in security features.

Do you want to provide real-time, instant solutions to your customers' most pressing problems? Live chat lets you have real-time conversations with customers and resolve their problems instantly. It allows you to provide faster service to your custom

The 2025 PHP Landscape Survey investigates current PHP development trends. It explores framework usage, deployment methods, and challenges, aiming to provide insights for developers and businesses. The survey anticipates growth in modern PHP versio

In this article, we're going to explore the notification system in the Laravel web framework. The notification system in Laravel allows you to send notifications to users over different channels. Today, we'll discuss how you can send notifications ov


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

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.

EditPlus Chinese cracked version
Small size, syntax highlighting, does not support code prompt function

Dreamweaver Mac version
Visual web development tools

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

VSCode Windows 64-bit Download
A free and powerful IDE editor launched by Microsoft
