通过引用分配静态属性在 PHP5 和 PHP7 之间表现不同
Assigning static properties by reference behaves differently between PHP5 and PHP7
从 PHP 5 升级到 PHP 7 后,以下代码产生不同的结果:
abstract class TheParent {
public static $prop;
public function __construct( $val ) {
static::set_prop($val);
}
public static function set_prop( $val ) {
$ref_reset = $val;
static::$prop =& $ref_reset;
}
}
class Child extends TheParent {
// public static $prop; //<-- not declared on purpose
}
class Child2 extends TheParent {
// public static $prop; //<-- not declared on purpose
}
$c = new Child('do');
$c2 = new Child2('re');
echo 'Child: ' . Child::$prop . '<br>';
echo 'Child2: ' . Child2::$prop . '<br>';
echo 'TheParent: ' . TheParent::$prop;
在PHP5:
Child: do
Child2: re
TheParent:
在PHP7:
Child: re
Child2: re
TheParent: re
我想要的输出是 PHP5 输出,因为我希望能够在扩展基础(父)的所有 class 中引用单个 属性 名称 class,但我不想重新声明 属性 或在每个子 class 中设置它的方法(主要是为了避免将相同的 property/method 添加到数十 classes).
PHP5 中的魔力似乎在于引用赋值(在对 SO 进行大量搜索之后,helpful answerers 提到引用设置“破坏”了“引用集”,这允许每个子 class 中的属性保存单独的值)。我在 PHP5.
中发现这是一个非常优雅的解决方案
有什么方法可以用 PHP7 中相同或相似的代码实现相同的结果吗?
解决方法:
看起来这是 PHP 7.2 和 7.3 之间的重大变化的结果,可能没有类似优雅的双线替代品。重构我的代码后,我发现这个稍微更冗长的解决方法是有效的(并且满足了我的主要目标,即不必在 sub-classes 中重新声明属性):
abstract class TheParent {
public static $props = [];
public function __construct( $val ) {
static::set_prop($val);
}
public static function set_prop( $val ) {
self::$props[static::class] = $val;
}
public static function get_prop() {
if( isset(self::$props[static::class]) )
return self::$props[static::class];
}
}
class Child extends TheParent {
// public static $prop; //<-- not declared on purpose
}
class Child2 extends TheParent {
// public static $prop; //<-- not declared on purpose
}
$c = new Child('do');
$c2 = new Child2('re');
echo 'Child: ' . Child::get_prop(). '<br>'; // 'do' in PHP 7.3
echo 'Child2: ' . Child2::get_prop() . '<br>'; // 're' in PHP 7.3
echo 'TheParent: ' . TheParent::get_prop(); // '' in PHP 7.3
我认为你的本地环境有问题。
您可以使用 php-sandbox 查看您的代码。
我检查了一下,php5和php7的结果是一样的。
这已在 PHP 7.2 => 7.3
中更改
Static Properties no longer separated by Reference Assignment
In PHP, static properties are shared between inheriting classes, unless
the static property is explicitly overridden in a child class.
However, due to an implementation artifact it was possible to separate
the static properties by assigning a reference. This loophole has been
fixed.
从 PHP 5 升级到 PHP 7 后,以下代码产生不同的结果:
abstract class TheParent {
public static $prop;
public function __construct( $val ) {
static::set_prop($val);
}
public static function set_prop( $val ) {
$ref_reset = $val;
static::$prop =& $ref_reset;
}
}
class Child extends TheParent {
// public static $prop; //<-- not declared on purpose
}
class Child2 extends TheParent {
// public static $prop; //<-- not declared on purpose
}
$c = new Child('do');
$c2 = new Child2('re');
echo 'Child: ' . Child::$prop . '<br>';
echo 'Child2: ' . Child2::$prop . '<br>';
echo 'TheParent: ' . TheParent::$prop;
在PHP5:
Child: do
Child2: re
TheParent:
在PHP7:
Child: re
Child2: re
TheParent: re
我想要的输出是 PHP5 输出,因为我希望能够在扩展基础(父)的所有 class 中引用单个 属性 名称 class,但我不想重新声明 属性 或在每个子 class 中设置它的方法(主要是为了避免将相同的 property/method 添加到数十 classes).
PHP5 中的魔力似乎在于引用赋值(在对 SO 进行大量搜索之后,helpful answerers 提到引用设置“破坏”了“引用集”,这允许每个子 class 中的属性保存单独的值)。我在 PHP5.
中发现这是一个非常优雅的解决方案有什么方法可以用 PHP7 中相同或相似的代码实现相同的结果吗?
解决方法:
看起来这是 PHP 7.2 和 7.3 之间的重大变化的结果,可能没有类似优雅的双线替代品。重构我的代码后,我发现这个稍微更冗长的解决方法是有效的(并且满足了我的主要目标,即不必在 sub-classes 中重新声明属性):
abstract class TheParent {
public static $props = [];
public function __construct( $val ) {
static::set_prop($val);
}
public static function set_prop( $val ) {
self::$props[static::class] = $val;
}
public static function get_prop() {
if( isset(self::$props[static::class]) )
return self::$props[static::class];
}
}
class Child extends TheParent {
// public static $prop; //<-- not declared on purpose
}
class Child2 extends TheParent {
// public static $prop; //<-- not declared on purpose
}
$c = new Child('do');
$c2 = new Child2('re');
echo 'Child: ' . Child::get_prop(). '<br>'; // 'do' in PHP 7.3
echo 'Child2: ' . Child2::get_prop() . '<br>'; // 're' in PHP 7.3
echo 'TheParent: ' . TheParent::get_prop(); // '' in PHP 7.3
我认为你的本地环境有问题。
您可以使用 php-sandbox 查看您的代码。
我检查了一下,php5和php7的结果是一样的。
这已在 PHP 7.2 => 7.3
中更改Static Properties no longer separated by Reference Assignment
In PHP, static properties are shared between inheriting classes, unless the static property is explicitly overridden in a child class. However, due to an implementation artifact it was possible to separate the static properties by assigning a reference. This loophole has been fixed.