All pastes #2047134 Raw Edit

Untitled

public php v1 · immutable
#2047134 ·published 2011-04-16 11:10 UTC
rendered paste body
<?phpclass Slim_Autoload {	public function register( ) {		ini_set( 'unserialize_callback_func', 'spl_autoload_call' );		spl_autoload_register( array( $this, 'autoload' ) );	}	public function autoload( $class ) {		if( $class == 'Slim' ) {			$file = dirname(__FILE__) . '/Slim.php';		} else {			$file = dirname(__FILE__) . '/../' . str_replace( '_', DIRECTORY_SEPARATOR, $class ) . '.php';		}		if( file_exists( $file ) ) {			include_once $file;		}	}}?>