全局“method_missing”在 PHP 中?

发布于 2024-09-19 01:40:31 字数 533 浏览 2 评论 0原文

可能的重复:
函数的魔术函数 __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 技术交流群。

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

发布评论

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

评论(1

吝吻 2024-09-26 01:40:31

您可以编写自己的 错误处理程序 并使用 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.

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