我可以实现__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