可能重复:
魔术函数 __call() 函数?
我可以实现 __call() 以在 PHP 类中提供 method_missing 行为。有没有办法在全局范围内提供相同的功能?
我想要这样的东西:
function __call( $name, $arguments ) {
echo( sprintf( '%s called', $name ) );
}
echo( 'before' );
call_undefined_function( $a, $b );
echo( 'after' );
输出:
before
call_undefined_function called
after