What are the principles for rewriting PHP class methods?
The PHP class method rewriting principles are: 1. Final modified class methods cannot be overridden by subclasses; 2. Whether PHP rewrites parent class methods will only be judged based on whether the method names are consistent; 3. When rewriting When writing, the access level can only be equal to or looser than the parent class, and the access level cannot be increased.

PHP class method rewriting rules:
(Recommended tutorial: php tutorial)
1. Class methods modified by final cannot be overridden by subclasses
Class methods modified by final cannot be overridden by subclasses. Even if the final private method cannot be inherited, subclasses still cannot modify it. Rewrite.
class FinalMethod
{
//可继承不可重写
final public function finalPublic()
{
echo "can be inherited, but be overrided";
}
//可继承不可重写
final protected function finalProtected()
{
echo "can be inherited, but be overrided";
}
//不可继承不可重写 虽然子类继承不到父类的private方法 但同时也会被final限制无法重写
final private function finalPrivate()
{
echo "can not be inherited or be overrided";
}
//虽然不可继承 但子类里可重写此方法
private function private()
{
echo "can not be inherited ,but be overrided";
}
}
class Override extends FinalMethod
{
//error
public function finalPublic()
{
}
//error
protected function finalProtected()
{
}
//error
private function finalPrivate()
{
}
//correct
public/protected/private function private()
{
//子类继承父类重写父类方法时访问级别只能更加宽松 不可更为严格
}
}2. Whether PHP rewrites the parent class method will only be judged based on whether the method name is consistent (the number of parameters of the rewritten parent class method after 5.3 must be consistent)
This is not to say that method parameters have no effect. PHP has no overloading mechanism, so judging whether it is rewritten will only be judged by the method name (C/C). It is considered to be a rewrite only when the method name is the same and the parameters are also the same. Otherwise, it is It is overloaded, that is, the state of a polymorphic function is newly defined).
When the method names are the same, it is considered to be overriding the parent class method. The parameters in 5.2 can be different. After 5.3, the parameters must be consistent with the parent class method, and all follow the rules of inherited access levels.
class Father
{
public function index($args_1)
{
}
}
class Child extends Father
{
//5.3以后重写方法必须与父类保持参数个数相同
public function index($args_1, $args_2)
{
//在C/C++中此为重载非重写,因为C/C++具有标准的多态机制,会因参数不同而视为某一方法的另一种态
//but在php中此依然为重写 但5.3以后此为非法 必须与父类的方法参数个数保持一致
}
//5.3以后重写方法必须与父类保持参数个数相同
private function index($args_1, $args_2)
{
//C/C++会因为参数不同于父类方法而视为重载,即新定义了一个函数的态,所以不会受到继承访问权限的限制
//但php仍然会被视为对父类方法的重写,会受到继承访问权限的升降规则限制
}
}3. When overriding, the access level can only be equal to or looser than the parent class, and the access level cannot be increased.
The public method of the parent class cannot be overridden by the subclass. protected or private, protected methods cannot be overridden as private.
class Father
{
public function index()
{
}
}
class Child extends Father
{
protected/private function index()
{
//访问权限提升 错误
//父类为public 则子类重写也只能为public
//父类为protected 则子类可为public/protected
//父类为private 则子类public/protected/private皆可
}
}The above is the detailed content of What are the principles for rewriting PHP class methods?. For more information, please follow other related articles on the PHP Chinese website!
ACID vs BASE Database: Differences and when to use each.Mar 26, 2025 pm 04:19 PMThe article compares ACID and BASE database models, detailing their characteristics and appropriate use cases. ACID prioritizes data integrity and consistency, suitable for financial and e-commerce applications, while BASE focuses on availability and
PHP Secure File Uploads: Preventing file-related vulnerabilities.Mar 26, 2025 pm 04:18 PMThe article discusses securing PHP file uploads to prevent vulnerabilities like code injection. It focuses on file type validation, secure storage, and error handling to enhance application security.
PHP Input Validation: Best practices.Mar 26, 2025 pm 04:17 PMArticle discusses best practices for PHP input validation to enhance security, focusing on techniques like using built-in functions, whitelist approach, and server-side validation.
PHP API Rate Limiting: Implementation strategies.Mar 26, 2025 pm 04:16 PMThe article discusses strategies for implementing API rate limiting in PHP, including algorithms like Token Bucket and Leaky Bucket, and using libraries like symfony/rate-limiter. It also covers monitoring, dynamically adjusting rate limits, and hand
PHP Password Hashing: password_hash and password_verify.Mar 26, 2025 pm 04:15 PMThe article discusses the benefits of using password_hash and password_verify in PHP for securing passwords. The main argument is that these functions enhance password protection through automatic salt generation, strong hashing algorithms, and secur
OWASP Top 10 PHP: Describe and mitigate common vulnerabilities.Mar 26, 2025 pm 04:13 PMThe article discusses OWASP Top 10 vulnerabilities in PHP and mitigation strategies. Key issues include injection, broken authentication, and XSS, with recommended tools for monitoring and securing PHP applications.
PHP XSS Prevention: How to protect against XSS.Mar 26, 2025 pm 04:12 PMThe article discusses strategies to prevent XSS attacks in PHP, focusing on input sanitization, output encoding, and using security-enhancing libraries and frameworks.
PHP Interface vs Abstract Class: When to use each.Mar 26, 2025 pm 04:11 PMThe article discusses the use of interfaces and abstract classes in PHP, focusing on when to use each. Interfaces define a contract without implementation, suitable for unrelated classes and multiple inheritance. Abstract classes provide common funct


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

SublimeText3 Linux new version
SublimeText3 Linux latest version

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

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

Dreamweaver Mac version
Visual web development tools

Atom editor mac version download
The most popular open source editor






