Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

Where is the memory location of static static properties and methods in php object-oriented

2025-01-20 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)06/03 Report--

Editor to share with you where the php object-oriented static static properties and methods of memory location, I believe that most people do not know much, so share this article for your reference, I hope you will learn a lot after reading this article, let's go to know it!

The details are as follows:

The memory location of the static static property-- > class, not the object. Let's do a test to prove it.

As can be seen from the output:

1. Echo Human:$name: when the class is declared, the static attribute exists and does not depend on the object. Therefore, there is only one static property (meaning in memory, the location is not in the object; if in the object, then instantiating an object, there is a corresponding static location, such as the height property)

2. Print_r ($p1): the printed result has only height attribute, but no name.

3. After the value of the static property changes, the value of the property of all objects will be affected.

Methods, whether static or normal, exist in the class memory space. The proof is also very simple, new an object, print_r (object).

These are all the contents of the article "where is the memory location of static static properties and methods in php object-oriented". Thank you for reading! I believe we all have a certain understanding, hope to share the content to help you, if you want to learn more knowledge, welcome to follow the industry information channel!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report