Home > Backend Development > PHP Tutorial > The difference between self and static in php object-oriented programming, object-oriented programming self_PHP tutorial

The difference between self and static in php object-oriented programming, object-oriented programming self_PHP tutorial

WBOY
Release: 2016-07-12 08:53:43
Original
1007 people have browsed it

The difference between PHP object-oriented programming self and static, object-oriented programming self

In PHP object-oriented programming, you will always encounter

class test{
 public static function test(){
  self::func();

  static::func();
 }

 public static function func(){}
}

Copy after login

But do you know the difference between self and static?

In fact, the difference is very simple. You only need to write a few demos to understand:

Demo for self:

class Car
{
 public static function model(){
  self::getModel();
 }

 protected static function getModel(){
  echo "This is a car model";
 }
}

Copy after login

Car::model();

Class Taxi extends Car
{
 protected static function getModel(){
  echo "This is a Taxi model";
 }
}

Copy after login

Taxi::model();
Get output

This is a car model
This is a car model
Copy after login

You can find that self will still call the method of the parent class in the subclass

Demo for static

class Car
{
 public static function model(){
  static::getModel();
 }

 protected static function getModel(){
  echo "This is a car model";
 }
}

Car::model();

Class Taxi extends Car
{
 protected static function getModel(){
  echo "This is a Taxi model";
 }
}

Taxi::model();

Copy after login

Get output

This is a car model
This is a Taxi model
Copy after login

You can see that when calling static, even if the subclass calls the method of the parent class, the method called in the parent class method will still be the method of the subclass (so confusing...)

Before the PHP5.3 version, there was still a little difference between static and self. What exactly was it? After all, they were all dominated by version 7. I won’t understand it anymore.

The summary is: self can only refer to methods in the current class, and the static keyword allows functions to dynamically bind methods in the class at runtime.

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/1123781.htmlTechArticleThe difference between PHP object-oriented programming self and static, object-oriented programming self In PHP object-oriented programming, there will always be Encountered class test{ public static function test(){ self::func(); static::...
Related labels:
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template