为什么PHP允许使用类名并通过作为类名占位符的各种关键字(例如self,static和parent)来静态调用非静态方法?
但是另一方面,它不允许调用非静态属性 静态地?
这是示例代码-
<?php
# PHP Version 7.1.7
error_reporting(E_ALL);
ini_set('display_errors', 1);
class Fruit {
public $name = 'Fruit';
public function x() {
echo "Fruit_x" . "<br>";
}
}
class Orange extends Fruit {
public $name = 'Orange';
public function x() {
echo "Orange_x" . "<br>";
parent::x();
self::y();
static::z();
// Code Below will throu Uncaught Error: Access to undeclared static property
// echo parent::$name . "<br>";
// echo self::$name . "<br>";
}
public function y(){
echo "Y" . "<br>";
}
public function z(){
echo "Z" . "<br>";
}
}
(new Orange)->x(); // No Warnings
Orange::x(); // However calling like this shows warning as of PHP 5 & 7
// Docs - http://php.net/manual/en/language.oop5.static.php
?>
答案 0 :(得分:2)
根据您的评论,我相信您的误解是因为您认为parent::
和self::
总是用于进行静态呼叫。
Parent用于访问任何类型的父方法,而self用于始终使用当前的类方法。由于方法只能定义一次,因此PHP可以推断应如何调用这些方法。
https://3v4l.org/NJOTK将显示使用继承时$this->call()
,self::call()
和parent::call()
之间差异的示例。实例方法允许使用static::
,但在功能上等效于$this->
。
相同的行为不会扩展到属性。实例属性不支持相同级别的继承,它们仅在实例化时继承值。您无法访问父级的属性,该实例上仅存在一个属性。因此,始终使用$this->property
访问非静态属性。