prefix = $prefix; $this->basedir = $basedir; } static function register( $prefix, $basedir ) { $loader = new self( $prefix, $basedir ); spl_autoload_register( array( $loader, 'autoload' ) ); } function autoload( $class ) { if ( $class[0] === '\\' ) { $class = substr( $class, 1 ); } if ( strpos( $class, $this->prefix ) !== 0 ) { return; } $path = str_replace( $this->prefix, '', $class ); $path = str_replace( '_', '-', strtolower( $path ) ); $file = sprintf( '%s/%s.php', $this->basedir, $path ); if ( is_file( $file ) ) { require $file; } } } P2P_Autoload::register( 'P2P_', dirname( __FILE__ ) ); require_once dirname( __FILE__ ) . '/util.php'; require_once dirname( __FILE__ ) . '/api.php';