可能重复:
调用时传递引用已被弃用
虽然它可能记录在互联网上的某个地方,但我找不到解决问题的方法。自 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;
}
}
}
}
.