代码在 PHP 4 中不起作用

发布于 2024-10-05 09:01:43 字数 584 浏览 3 评论 0原文

我有一个 PHP 脚本,它在 PHP 5 中工作正常,但在 PHP 4 中不行。我做了一个小测试用例供您演示(免责声明:我知道下面的代码可以写得更好,但它实际上并不是一个使用的部分,而不是演示我正在谈论的内容的部分):

class Messenger {
    var $messages = '';

    function add($message) {
        $this->messages .= "$message\n";
    }
}

function add($m) {
    if (! isset($GLOBALS['instance'])) $GLOBALS['instance'] = new Messenger();
    call_user_func_array(array($GLOBALS['instance'], 'add'), array($m));
}

add("One");
add("Two");
add("Three");

var_dump($GLOBALS['instance']->messages);

在 PHP 5 下,messages 属性包含所有 3 条消息,在 PHP 4 下它是空的。为什么?

I have a PHP script which works fine in PHP 5, but not in PHP 4. I've made a small test case for you to demonstrate (disclaimer: I know that the below code could be written much better, but it's not an actually used piece, rather the one to demonstrate what I'm talking about):

class Messenger {
    var $messages = '';

    function add($message) {
        $this->messages .= "$message\n";
    }
}

function add($m) {
    if (! isset($GLOBALS['instance'])) $GLOBALS['instance'] = new Messenger();
    call_user_func_array(array($GLOBALS['instance'], 'add'), array($m));
}

add("One");
add("Two");
add("Three");

var_dump($GLOBALS['instance']->messages);

Under PHP 5 the messages property contains all 3 messages, under PHP 4 it is empty. Why?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

鼻尖触碰 2024-10-12 09:01:43

PHP 4 中,$this 的工作方式似乎与 PHP 5 不同。

如果静态调用 $this 伪变量所在的方法,则通常不会定义它。然而,这并不是一个严格的规则:如果从另一个对象内部静态调用一个方法,则定义 $this。在这种情况下,$this 的值是调用对象的值。下面的示例对此进行了说明:

示例: http://www.php.net /manual/en/keyword.class.php

In PHP 4, $this does not seems to be work the same way as PHP 5 does.

The $this pseudo-variable is not usually defined if the method in which it is hosted is called statically. This is not, however, a strict rule: $this is defined if a method is called statically from within another object. In this case, the value of $this is that of the calling object. This is illustrated in the following example:

example : http://www.php.net/manual/en/keyword.class.php

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文