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

What does $this in php mean?

2025-04-10 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Internet Technology >

Share

Shulou(Shulou.com)05/31 Report--

This article mainly introduces the relevant knowledge of "what does $this in php refer to". The editor shows you the operation process through an actual case. The method of operation is simple, fast and practical. I hope this article "what does $this in php refer to" can help you solve the problem.

Description

1. $this is a reference to the current object. There is a pointer in $this that points to whoever calls it, and it can only be used inside the class.

2. $this cannot be used to access static properties because static properties are bound to the class.

Can only be accessed by static, self and parent.

Example

Class MyClass1 {public $public = 'Public'; protected $protected =' Protected'; private $private = 'Private'; function printHello () {echo $this- > public; echo $this- > protected; echo $this- > private;}} class MyClass2 extends MyClass1 {public $public =' Public2'; protected $protected = 'Protected2'; private $private =' Private2';} $obj = new MyClass1 (); $obj-> printHello (); / / Public Protected Private$obj2 = new MyClass2 () $obj2-> printHello (); / / Public2 Protected2 Private's content on "what does $this in php refer to" ends here. Thank you for your reading. If you want to know more about the industry, you can follow the industry information channel. The editor will update different knowledge points for you every day.

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

Internet Technology

Wechat

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

12
Report