全局“method_missing”在 PHP 中?
可能的重复:
函数的魔术函数 __call() ?
我可以实现 __call() 来提供 method_missing 行为在 PHP 课程中。有没有办法在全局范围内提供相同的功能?
我想要这样的东西:
function __call( $name, $arguments ) {
echo( sprintf( '%s called', $name ) );
}
echo( 'before' );
call_undefined_function( $a, $b );
echo( 'after' );
输出:
before
call_undefined_function called
after
Possible Duplicate:
Magic functions __call() for functions?
I can implement __call() to provide method_missing behavior in PHP classes. Is there some way to provide the same functionality in the global scope?
I want something like this:
function __call( $name, $arguments ) {
echo( sprintf( '%s called', $name ) );
}
echo( 'before' );
call_undefined_function( $a, $b );
echo( 'after' );
Outputs:
before
call_undefined_function called
after
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以编写自己的 错误处理程序 并使用
function_exists()
在其中生成您想要的消息。只要您不在错误处理程序中停止脚本,执行就会继续。You can write your own error handler and use
function_exists()
in it to generate the message you want. As long as you don´t stop your script in your error handler, execution will continue.