foo(); ?> 输出: 5.3.6 instance 如何让它显示“-6ren">
gpt4 book ai didi

php - 从实例调用静态函数

转载 作者:可可西里 更新时间:2023-11-01 14:05:37 25 4
gpt4 key购买 nike

我正在尝试从其子类的成员调用静态魔法函数 (__callStatic)。问题是,它转到了非静态 __call

<?php

ini_set("display_errors", true);

class a
{
function __call($method, $params)
{
echo "instance";
}

static function __callStatic($method, $params)
{
echo "static";
}
}

class b extends a
{
function foo()
{
echo static::bar();
// === echo self::bar();
// === echo a::bar();
// === echo b::bar();
}
}

$b = new b();
echo phpversion()."<br />";
$b->foo();

?>

输出:

5.3.6
instance

如何让它显示“静态”?

最佳答案

如果您删除魔术方法“__call”,您的代码将返回“static”。

根据 http://php.net/manual/en/language.oop5.overloading.php “在静态上下文中调用不可访问的方法时会触发 __callStatic()”。

我认为您的代码中发生的是,

  1. 您正在从非静态上下文中调用静态方法。
  2. 方法调用是在非静态上下文中进行的,因此 PHP 会搜索魔术方法“__call”。
  3. PHP 触发魔术方法“_call”(如果它存在)。或者,如果它不存在,它将调用“_callStatic”。

这是一个可能的解决方案:

class a
{
static function __callStatic($method, $params)
{
$methodList = array('staticMethod1', 'staticMethod2');

// check if the method name should be called statically
if (!in_array($method, $methodList)) {
return false;
}

echo "static";

return true;
}

function __call($method, $params)
{
$status = self::__callStatic($method, $params);
if ($status) {
return;
}
echo "instance";
}

}

class b extends a
{
function foo()
{
echo static::staticMethod1();
}

function foo2()
{
echo static::bar();
}
}

$b = new b();
echo phpversion()."<br />";
$b->foo();
$b->foo2();

关于php - 从实例调用静态函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6750038/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com