51

可能重复:
调用时传递引用已被弃用

虽然它可能记录在互联网上的某个地方,但我找不到解决问题的方法。自 PHP 5.4 更新以来,传递引用已被删除。

现在我对这部分代码有疑问,我希望有人能看到我正在尝试用它做什么,以便他们可以帮助我解决我的传递引用问题。

以下是有问题的代码:

public function trigger_hooks( $command, &$client, $input ) {
    if( isset( $this->hooks[$command] ) ) {
        foreach( $this->hooks[$command] as $func ) {
            PS3socket::debug( 'Triggering Hook \'' . $func . '\' for \'' . $command . '\'' );
            $continue = call_user_func( $func, &$this, &$client, $input );
            if( $continue === FALSE ) {
                break;
            }
        }
    }
}

.

4

1 回答 1

91

仅删除调用时间传递引用。所以改变:

call_user_func($func, &$this, &$client ...

对此:

call_user_func($func, $this, $client ...

&$this无论如何,在 PHP4 之后永远都不需要。

如果您绝对需要通过引用传递 $client,请改为更新函数 ($func) 签名 ( function func(&$client) {)

于 2012-09-07T17:36:05.807 回答