可能重复:
在调用的时候传递通过引用已弃用
虽然它可以在互联网上的某个地方记录,我无法找到一个解决我的问题。 由于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;
}
}
}
}
。