<?php class foo { function __construct() { register_shutdown_function( array( $this, '__destruct' ) ); } function bar() { } function __destruct() { return true; } } $GLOBALS['fb'] = new foo; function foo_bar( $buffer ) { $buffer .= "gettype( 'fb' ): " . gettype( $GLOBALS['fb'] ); return $buffer; } ob_start( 'foo_bar' );
You have javascript disabled. You will not be able to edit any code.