search
HomeBackend DevelopmentPHP TutorialLet's talk about PHP inheritance, my personal opinions, opinions on PHP inheritance_PHP tutorial

Talk about the things that PHP inherits, my personal opinion, the things that PHP inherits

It is often spread on the Internet that PHP is the one at the bottom of the language contempt chain. I once studied Java in college. , I used Java after graduation, and I just came out to be trained to use Java. During the first 2 or 3 years of working, I had quite a lot of opinions on the object-oriented nature of PHP. I always felt that it was "neither fish nor fowl", let alone my views on JS. However, these views have gradually faded or even changed after experiencing more and more projects. This includes a greater understanding of projects and technologies. At the same time, the Web environment and technologies have been constantly updated over the years. But today I’m not here to talk about these things. Regarding the above issues, my point of view can be summarized as follows: technology is a tool and a means. If it is not suitable, upgrade or replace it. It’s that simple.

Back to the original topic. Although I have been proficient in writing PHP for nearly 8 years, due to work, I often need to involve various codes on the front and back ends, which is easy to separate and always forget. Something happened recently that made me think that maybe writing it down could help me wake up a little bit.

When writing a certain module in a certain year, I used static members. In the process of implementing the subclass, I found that they also shared the value of this member of the parent class. Specifically, I changed that in a certain subclass A. The member value, when used by another subclass B, accidentally gets the value overwritten by A. At that time, I thought that it turns out that static members are shared throughout the category tree starting from the place of declaration. Later, I vaguely remembered this conclusion, and used static members more cautiously in normal code. Unless the class written is confirmed to be an independent tool class, static should not be used easily.

Until one day my boss discussed with me about upgrading a BaseModel I had written before. He accidentally asked me: It seems that you don’t like using static members? I said no, because considering that BaseModel will often be inherited into various Models, if I use static here, it will be easy to get into trouble in the future. He said he didn't understand and then came over to argue with me. I explained righteously that because static members will be shared, if two different subclasses are called, the value of the variable of the static member will be as uncontrollable as a global variable. He disagrees. So in the spirit of science, we wrote a short code to verify:

class A {

protected static $var1 = null;

Public static function test(){

echo get_called_class(). ' '.static::$var1.'
';

 }

 }

class B extends A {

protected static $var1 = 'b';

 }

class C extends A {

protected static $var1 = 'c';

 }

 B::test();

 C::test();

Obviously, I lost this time. The result I expected was c c, but it was actually b c. So it seems that the static members of the subclass are only shared at the subclass level. But I always feel something is wrong. I obviously had another setback when I was writing BaseModel. Why does this verification not support the problems I encountered at that time? Then I realized that I had forgotten something. How nice to be young. Later, when I thought about it, it turned out that the reason why I didn't use static here was just because of design requirements.

I thought I was wrong. Until a few days ago, I wrote a few more parent-child classes (not BaseModel), and boldly used static members. As a result, I stumbled again in the self-test. What's going on! Then I paid careful attention to my usage this time, changed the above example and ran it:

class A {

protected static $var1 = null;

protected static $var2 = null;

 public static function test(){

 if (! static::$var2) {

static::$var2 = static::$var1;

 }

echo get_called_class(). ' '.static::$var1.'
';

 }

 }

class B extends A {

protected static $var1 = 'b';

 }

class C extends A {

protected static $var1 = 'c';

 }

 B::test();

 C::test();

The result is

 B b

 C b

If the conclusion last time was correct, how do you explain it this time? This clearly means that $var2 is shared by A, B, and C. The difference between $var1 and $var2 seems to be only the difference between declared and undeclared. So I changed it to this:

class A {

protected static $var1 = null;

protected static $var2 = null;

 public static function test(){

 if (! static::$var2) {

static::$var2 = static::$var1;

 }

echo get_called_class(). ' '.static::$var1.'
';

 }

 }

class B extends A {

 protected static $var1 = 'b';

protected static $var2 = null;

 }

class C extends A {

protected static $var1 = 'c';

protected static $var2 = null;

 }

 B::test();

 C::test();

The result is

 B b

 C c

I was shattered inside. So I went to Stack Overflow and found that I wasn't the only one who was wronged.

Only explicitly declared static members will be considered as belonging only to subclasses.

Only explicitly declared static members will be considered as belonging only to subclasses.

Only explicitly declared static members will be considered as belonging only to subclasses.

Say important things three times! However, if there are many subclasses, each member whose value is dynamically determined will be declared in this way, which will lose the meaning of using static in terms of writing code. A better way is to turn $var2 into an array, and put the values ​​to be used by each class in $var[__CLASS__].

But no matter what, if it is not necessary, try not to use static member inheritance.

There is another "pit" that is somewhat similar. When we talk about private members, we all know that private means private and will not be inherited by subclasses. But sometimes I forget when writing code, and I don’t remember until I get started. It turns out that it is private that causes the subclass to not find the members it should have, or that private is declared in the subclass, but because when calling a function, the parent is called. Class function, the result is the private value of the parent class instead of the subclass. In this case, it is impossible to rewrite the function as it is in the subclass. So be very careful when using private.

When I was using Rackspace’s SDK, I saw that some classes used private members, but because they gave unnecessary permissions to open files, the code could not run on our server. So at this time, I wanted to write a subclass to overwrite the initial value of this member, but in the end, because this is a private member, I needed to copy all the references to the subclass I wrote. Why don't we just change the SDK and make the members protected? Because the development package may be upgraded next time? After the correction, we can just remove the subclass. If modifying library code becomes a habit, it won't be so fun when you want to upgrade. Therefore, private members must be used with caution. If you are also developing an SDK, you need to consider whether users need to inherit? If you must write private, can you ensure that the code can be used in various scenarios?

Unless you have a very good reason, both static and private need to be used with caution.

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/1138823.htmlTechArticleTalk about those things that PHP inherits. My personal opinion. What are the things that PHP inherits? Opinions on what PHP inherits are often circulated on the Internet. The one at the bottom of the language contempt chain. I once studied Java in college and used Java for graduation. I just came out...
Statement
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
phpcms是什么框架phpcms是什么框架Apr 20, 2024 pm 10:51 PM

PHP CMS 是一种基于 PHP 的开源内容管理系统,用于管理网站内容,其特点包括易用性、强大功能、可扩展性、安全性高和免费开源。它可以节省时间、提升网站质量、增强协作并降低开发成本,广泛应用于新闻网站、博客、企业网站、电子商务网站和社区论坛等各种网站。

phpcms怎么跳转到详情页phpcms怎么跳转到详情页Jul 27, 2023 pm 05:23 PM

phpcms跳转到详情页方法:1、使用header函数来生成跳转链接;2、循环遍历内容列表;3、获取内容的标题和详情页链接;4、生成跳转链接即可。

微信登录集成指南:PHPCMS实战微信登录集成指南:PHPCMS实战Mar 29, 2024 am 09:18 AM

标题:微信登录集成指南:PHPCMS实战在今天的互联网时代,社交化登录已经成为网站必备的功能之一。微信作为国内最流行的社交平台之一,其登录功能也被越来越多的网站所采用。本文将介绍如何在PHPCMS网站中集成微信登录功能,并提供具体的代码示例。第一步:注册微信开放平台账号首先,我们需要在微信开放平台上注册一个开发者账号,申请相应的开发权限。登录[微信开放平台]

phpcms是什么意思phpcms是什么意思Apr 20, 2024 pm 10:39 PM

PHPCMS 是一款免费开源的内容管理系统 (CMS),特点包括:开放源码、模块化、灵活、用户友好和社区支持。它可用于创建各种类型的网站,包括企业网站、电子商务网站、博客和社区论坛。技术要求包括:PHP 5.6 或更高版本、MySQL、MariaDB 或 PostgreSQL 数据库以及 Apache 或 Nginx Web 服务器。

2023年最新phpcms视频教程推荐(二次开发必学)2023年最新phpcms视频教程推荐(二次开发必学)Oct 25, 2019 pm 03:45 PM

很多站长使用PHPCMS进行二次开发建站,PHP中文网特意推出了phpcms视频教程,大家可以随时随地免费观看视频教程,不需要从百度网盘下载,非常方便。

phpcms怎么实现微信登陆phpcms怎么实现微信登陆Mar 09, 2023 am 09:33 AM

phpcms实现微信登录的方法:1、在根目录新建“wechat.php”;2、在“\phpcms\modules\member\index.php”下增加“public function wechat() {...}”;3、在“foreground.class.php”文件中通过wechat函数判断用户是否登录即可。

phpcms用什么数据库phpcms用什么数据库Feb 21, 2023 pm 06:57 PM

phpcms用mysql数据库。phpcms是一个PHP开源网站管理系统,采用PHP+MYSQL做为技术基础进行开发。PHPCMS V9采用OOP方式进行基础运行框架搭建,支持的PHP版本是PHP5及以上、支持的MYSQL版本是MySql 4.1以上版本。

phpcms有评论功能吗phpcms有评论功能吗Feb 16, 2023 am 10:06 AM

phpcms有评论功能。phpcms内置评论模块,提供了让网站的浏览者发布自己见解的功能,使得浏览者可以互动,相互交流自己的看法,来增加网站人气。PHPCMS的评论用户留言的功能,同时还增加了审核功能,防止言论中出现违禁词汇等。对网站管理者而言,PHPCMS的评论模块可以方便的管理用户评论,可以根据时间、关键字、是否审核等条件查找并管理留言内容。

See all articles

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

Hot Tools

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.