Home Web Front-end JS Tutorial How to use PHP static binding in your project

How to use PHP static binding in your project

Jun 14, 2018 pm 03:15 PM
php static binding

This time I will show you how to use PHP static binding in the project, and what are the precautions for using PHP static binding in the project. The following is a practical case, let's take a look.

Basic knowledge

1. Range parsing operator (::)

  • can be used It is used to access static members and class constants, and can also be used to override properties and methods in the class.

  • The three special keywords self, parent and static are used to access its properties or methods inside the class definition.

  • parent is used to call overridden properties or methods in the parent class (where it appears, it will be resolved to the parent class of the corresponding class).

  • self is used to call methods or properties in this class (wherever it appears, it will be parsed into the corresponding class; note the difference with $this, $this points to the currently instantiated object ).

  • When a subclass overrides a method in its parent class, PHP will not call the overridden method in the parent class. Whether the method of the parent class is called depends on the child class.

2. The PHP kernel places the inheritance implementation of classes in the "compilation phase"

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

<?php

class A{

 const H = &#39;A&#39;;

 const J = &#39;A&#39;;

 static function testSelf(){

  echo self::H; //在编译阶段就确定了 self解析为 A

 }

}

class B extends A{

 const H = "B";

 const J = &#39;B&#39;;

 static function testParent(){

  echo parent::J; //在编译阶段就确定了 parent解析为A

 }

 /* 若重写testSelf则能输出“B”, 且C::testSelf()也是输出“B”

 static function testSelf(){

  echo self::H;

 }

 */

}

class C extends B{

 const H = "C";

 const J = &#39;C&#39;;

}

B::testParent();

B::testSelf();

echo "\n";

C::testParent();

C::testSelf();

Copy after login

Running results:

AA
AA

Conclusion:

self:: and parent:: appear in the definition of a certain class X, they will be parsed into the corresponding class X, unless the parent class method is overridden in the subclass.

3.Static (static) keyword

Function:

- The static keyword is used to modify variables in the function body Define static local variables.
- Used to declare static members when modifying class member functions and member variables.
- (After PHP5.3) A special class that represents static delayed binding before the scope resolver (::).

Example:

Define static local variables (occurrence: in local functions)

Features: Static variables only exist in the local function domain, but when the program Its value is not lost when execution leaves this scope.

1

2

3

4

5

6

7

8

9

10

11

<?php

function test()

{

 static $count = 0;

 $count++;

 echo $count;

 if ($count < 10) {

  test();

 }

 $count--;

}

Copy after login

Define static methods, static attributes

a) Declare class attributes or methods as static, so you can access them directly without instantiating the class.

b) Static properties cannot be accessed through an instantiated object of a class (but static methods can)

c) If access control is not specified, properties and methods default to public.

d) Since static methods do not require an object to be called, the pseudo variable $this is not available in static methods.

e) Static properties cannot be accessed by objects through the -> operator.

f) Calling a non-static method statically will result in an E_STRICT level error.

g) Like all other PHP static variables, static properties can only be initialized to literals or constants, not expressions. So a static property can be initialized to an integer or an array, but it cannot be initialized to another variable or function return value, nor can it point to an object.

a. Static method example (occurrence: class method definition)

1

2

3

4

5

6

7

8

9

10

<?php

class Foo {

 public static function aStaticMethod() {

  // ...

 }

}

Foo::aStaticMethod();

$classname = &#39;Foo&#39;;

$classname::aStaticMethod(); // 自PHP 5.3.0后,可以通过变量引用类

?>

Copy after login

b. Static attribute example (occurrence: class attribute definition)

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

<?php

class Foo

{

 public static $my_static = &#39;foo&#39;;

 public function staticValue() {

  return self::$my_static; //self 即 FOO类

 }

}

class Bar extends Foo

{

 public function fooStatic() {

  return parent::$my_static; //parent 即 FOO类

 }

}

print Foo::$my_static . "\n";

$foo = new Foo();

print $foo->staticValue() . "\n";

print $foo->my_static . "\n";  // Undefined "Property" my_static 

print $foo::$my_static "\n";

$classname 'Foo';

print $classname::$my_static "\n"// As of PHP 5.3.0

print Bar::$my_static "\n";

$bar new Bar();

print $bar->fooStatic() . "\n";

?>

Copy after login

c. Used for late static binding (position: in class methods, used to modify variables or methods)

Detailed analysis below

Late static binding (late static binding)

Since PHP 5.3.0, PHP has added a feature called late static binding, which is used to reference statically called classes in the inheritance scope.

1. Forwarded calls and non-forwarded calls

Forwarded calls:

refers to static calls made in the following ways: self: :, parent::, static:: and forward_static_call().

Non-forwarded calls:

Static calls that explicitly specify the class name (such as Foo::foo())

Non-static calls (such as $foo->foo( ))

2. Working principle of late static binding

Principle: The class name in the previous "non-forwarding call" is stored . This means that when we call a static call that is a forward call, the class actually called is the class of the previous non-forward call.

例子分析:

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

37

38

39

40

41

42

43

44

45

46

47

48

49

50

51

52

53

54

55

56

57

58

59

60

61

62

63

64

65

66

67

68

<?php

class A {

 public static function foo() {

  echo __CLASS__."\n";

  static::who();

 }

 public static function who() {

  echo __CLASS__."\n";

 }

}

class B extends A {

 public static function test() {

  echo "A::foo()\n";

  A::foo();

  echo "parent::foo()\n";

  parent::foo();

  echo "self::foo()\n";

  self::foo();

 }

 public static function who() {

  echo __CLASS__."\n";

 }

}

class C extends B {

 public static function who() {

  echo __CLASS__."\n";

 }

}

C::test();

/*

 * C::test(); //非转发调用 ,进入test()调用后,“上一次非转发调用”存储的类名为C

 *

 * //当前的“上一次非转发调用”存储的类名为C

 * public static function test() {

 *  A::foo(); //非转发调用, 进入foo()调用后,“上一次非转发调用”存储的类名为A,然后实际执行代码A::foo(), 转 0-0

 *  parent::foo(); //转发调用, 进入foo()调用后,“上一次非转发调用”存储的类名为C, 此处的parent解析为A ,转1-0

 *  self::foo(); //转发调用, 进入foo()调用后,“上一次非转发调用”存储的类名为C, 此处self解析为B, 转2-0

 * }

 *

 *

 * 0-0

 * //当前的“上一次非转发调用”存储的类名为A

 * public static function foo() {

 *  static::who(); //转发调用, 因为当前的“上一次非转发调用”存储的类名为A, 故实际执行代码A::who(),即static代表A,进入who()调用后,“上一次非转发调用”存储的类名依然为A,因此打印 “A”

 * }

 *

 * 1-0

 * //当前的“上一次非转发调用”存储的类名为C

 * public static function foo() {

 *  static::who(); //转发调用, 因为当前的“上一次非转发调用”存储的类名为C, 故实际执行代码C::who(),即static代表C,进入who()调用后,“上一次非转发调用”存储的类名依然为C,因此打印 “C”

 * }

 *

 * 2-0

 * //当前的“上一次非转发调用”存储的类名为C

 * public static function foo() {

 *  static::who(); //转发调用, 因为当前的“上一次非转发调用”存储的类名为C, 故实际执行代码C::who(),即static代表C,进入who()调用后,“上一次非转发调用”存储的类名依然为C,因此打印 “C”

 * }

 */

故最终结果为:

A::foo()

A

A

parent::foo()

A

C

self::foo()

A

C

Copy after login

3.更多静态后期静态绑定的例子

a)Self, Parent 和 Static的对比

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

37

<?php

class Mango {

 function classname(){

  return __CLASS__;

 }

 function selfname(){

  return self::classname();

 }

 function staticname(){

  return static::classname();

 }

}

class Orange extends Mango {

 function parentname(){

  return parent::classname();

 }

 function classname(){

  return __CLASS__;

 }

}

class Apple extends Orange {

 function parentname(){

  return parent::classname();

 }

 function classname(){

  return __CLASS__;

 }

}

$apple = new Apple();

echo $apple->selfname() . "\n";

echo $apple->parentname() . "\n";

echo $apple->staticname();

?>

运行结果:

Mango

Orange

Apple

Copy after login

b)使用forward_static_call()

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

<?php

class Mango

{

 const NAME = &#39;Mango is&#39;;

 public static function fruit() {

  $args = func_get_args();

  echo static::NAME, " " . join(&#39; &#39;, $args) . "\n";

 }

}

class Orange extends Mango

{

 const NAME = &#39;Orange is&#39;;

 public static function fruit() {

  echo self::NAME, "\n";

  forward_static_call(array(&#39;Mango&#39;, &#39;fruit&#39;), &#39;my&#39;, &#39;favorite&#39;, &#39;fruit&#39;);

  forward_static_call(&#39;fruit&#39;, &#39;my&#39;, &#39;father\&#39;s&#39;, &#39;favorite&#39;, &#39;fruit&#39;);

 }

}

Orange::fruit(&#39;NO&#39;);

function fruit() {

 $args = func_get_args();

 echo "Apple is " . join(&#39; &#39;, $args). "\n";

}

?>

运行结果:

Orange is

Orange is my favorite fruit

Apple is my father's favorite fruit

Copy after login

c)使用get_called_class()

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

<?php

class Mango {

 static public function fruit() {

  echo get_called_class() . "\n";

 }

}

class Orange extends Mango {

 //

}

Mango::fruit();

Orange::fruit();

?>

运行结果:

Mango

Orange

Copy after login

应用

前面已经提到过了,引入后期静态绑定的目的是:用于在继承范围内引用静态调用的类。
所以, 可以用后期静态绑定的办法解决单例继承问题。

先看一下使用self是一个什么样的情况:

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

37

38

39

40

41

42

43

<?php

// new self 得到的单例都为A。

class A

{

 protected static $_instance = null;

 protected function __construct()

 {

  //disallow new instance

 }

 protected function __clone(){

  //disallow clone

 }

 static public function getInstance()

 {

  if (self::$_instance === null) {

   self::$_instance new self();

  }

  return self::$_instance;

 }

}

class extends A

{

 protected static $_instance = null;

}

class extends A{

 protected static $_instance = null;

}

$a = A::getInstance();

$b = B::getInstance();

$c = C::getInstance();

var_dump($a);

var_dump($b);

var_dump($c);

运行结果:

E:\code\php_test\apply\self.php:37:

class A#1 (0) {

}

E:\code\php_test\apply\self.php:38:

class A#1 (0) {

}

E:\code\php_test\apply\self.php:39:

class A#1 (0) {

}

Copy after login

通过上面的例子可以看到,使用self,实例化得到的都是类A的同一个对象

再来看看使用static会得到什么样的结果

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

37

38

39

40

41

<?php

// new static 得到的单例分别为D,E和F。

class D

{

 protected static $_instance = null;

 protected function __construct(){}

 protected function __clone()

 {

  //disallow clone

 }

 static public function getInstance()

 {

  if (static::$_instance === null) {

   static::$_instance new static();

  }

  return static::$_instance;

 }

}

class extends D

{

 protected static $_instance = null;

}

class extends D{

 protected static $_instance = null;

}

$d = D::getInstance();

$e = E::getInstance();

$f = F::getInstance();

var_dump($d);

var_dump($e);

var_dump($f);

运行结果:

E:\code\php_test\apply\static.php:35:

class D#1 (0) {

}

E:\code\php_test\apply\static.php:36:

class E#2 (0) {

}

E:\code\php_test\apply\static.php:37:

class F#3 (0) {

}

Copy after login

相信看了本文案例你已经掌握了方法,更多精彩请关注php中文网其它相关文章!

推荐阅读:

如何操作JS遍历多维数组

如何操作vue代码规范检测

The above is the detailed content of How to use PHP static binding in your project. For more information, please follow other related articles on the PHP Chinese website!

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

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

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Hot Topics

Java Tutorial
1657
14
PHP Tutorial
1257
29
C# Tutorial
1231
24
How do you parse and process HTML/XML in PHP? How do you parse and process HTML/XML in PHP? Feb 07, 2025 am 11:57 AM

This tutorial demonstrates how to efficiently process XML documents using PHP. XML (eXtensible Markup Language) is a versatile text-based markup language designed for both human readability and machine parsing. It's commonly used for data storage an

Explain JSON Web Tokens (JWT) and their use case in PHP APIs. Explain JSON Web Tokens (JWT) and their use case in PHP APIs. Apr 05, 2025 am 12:04 AM

JWT is an open standard based on JSON, used to securely transmit information between parties, mainly for identity authentication and information exchange. 1. JWT consists of three parts: Header, Payload and Signature. 2. The working principle of JWT includes three steps: generating JWT, verifying JWT and parsing Payload. 3. When using JWT for authentication in PHP, JWT can be generated and verified, and user role and permission information can be included in advanced usage. 4. Common errors include signature verification failure, token expiration, and payload oversized. Debugging skills include using debugging tools and logging. 5. Performance optimization and best practices include using appropriate signature algorithms, setting validity periods reasonably,

Explain late static binding in PHP (static::). Explain late static binding in PHP (static::). Apr 03, 2025 am 12:04 AM

Static binding (static::) implements late static binding (LSB) in PHP, allowing calling classes to be referenced in static contexts rather than defining classes. 1) The parsing process is performed at runtime, 2) Look up the call class in the inheritance relationship, 3) It may bring performance overhead.

PHP Program to Count Vowels in a String PHP Program to Count Vowels in a String Feb 07, 2025 pm 12:12 PM

A string is a sequence of characters, including letters, numbers, and symbols. This tutorial will learn how to calculate the number of vowels in a given string in PHP using different methods. The vowels in English are a, e, i, o, u, and they can be uppercase or lowercase. What is a vowel? Vowels are alphabetic characters that represent a specific pronunciation. There are five vowels in English, including uppercase and lowercase: a, e, i, o, u Example 1 Input: String = "Tutorialspoint" Output: 6 explain The vowels in the string "Tutorialspoint" are u, o, i, a, o, i. There are 6 yuan in total

What are PHP magic methods (__construct, __destruct, __call, __get, __set, etc.) and provide use cases? What are PHP magic methods (__construct, __destruct, __call, __get, __set, etc.) and provide use cases? Apr 03, 2025 am 12:03 AM

What are the magic methods of PHP? PHP's magic methods include: 1.\_\_construct, used to initialize objects; 2.\_\_destruct, used to clean up resources; 3.\_\_call, handle non-existent method calls; 4.\_\_get, implement dynamic attribute access; 5.\_\_set, implement dynamic attribute settings. These methods are automatically called in certain situations, improving code flexibility and efficiency.

PHP and Python: Comparing Two Popular Programming Languages PHP and Python: Comparing Two Popular Programming Languages Apr 14, 2025 am 12:13 AM

PHP and Python each have their own advantages, and choose according to project requirements. 1.PHP is suitable for web development, especially for rapid development and maintenance of websites. 2. Python is suitable for data science, machine learning and artificial intelligence, with concise syntax and suitable for beginners.

PHP: A Key Language for Web Development PHP: A Key Language for Web Development Apr 13, 2025 am 12:08 AM

PHP is a scripting language widely used on the server side, especially suitable for web development. 1.PHP can embed HTML, process HTTP requests and responses, and supports a variety of databases. 2.PHP is used to generate dynamic web content, process form data, access databases, etc., with strong community support and open source resources. 3. PHP is an interpreted language, and the execution process includes lexical analysis, grammatical analysis, compilation and execution. 4.PHP can be combined with MySQL for advanced applications such as user registration systems. 5. When debugging PHP, you can use functions such as error_reporting() and var_dump(). 6. Optimize PHP code to use caching mechanisms, optimize database queries and use built-in functions. 7

PHP in Action: Real-World Examples and Applications PHP in Action: Real-World Examples and Applications Apr 14, 2025 am 12:19 AM

PHP is widely used in e-commerce, content management systems and API development. 1) E-commerce: used for shopping cart function and payment processing. 2) Content management system: used for dynamic content generation and user management. 3) API development: used for RESTful API development and API security. Through performance optimization and best practices, the efficiency and maintainability of PHP applications are improved.

See all articles