PHP 클래스 sfCoreAutoload

This class is a singleton as PHP seems to be unable to register 2 autoloaders that are instances of the same class (why?).
저자: Fabien Potencier ([email protected])
파일 보기 프로젝트 열기: lexpress/symfony1 1 사용 예제들

보호된 프로퍼티들

프로퍼티 타입 설명
$baseDir
$classes To update it, use sfCoreAutoload::make()
$instance
$registered

공개 메소드들

메소드 설명
autoload ( string $class ) : boolean Handles autoloading of classes.
getBaseDir ( ) : string Returns the base directory this autoloader is working on.
getClassPath ( string $class ) : string | null Returns the filename of the supplied class.
getInstance ( ) : sfCoreAutoload Retrieves the singleton instance of this class.
make ( ) Rebuilds the association array between class names and paths.
register ( ) : void Register sfCoreAutoload in spl autoloader.
unregister ( ) : void Unregister sfCoreAutoload from spl autoloader.

보호된 메소드들

메소드 설명
__construct ( )

메소드 상세

__construct() 보호된 메소드

protected __construct ( )

autoload() 공개 메소드

Handles autoloading of classes.
public autoload ( string $class ) : boolean
$class string A class name.
리턴 boolean Returns true if the class has been loaded

getBaseDir() 공개 메소드

Returns the base directory this autoloader is working on.
public getBaseDir ( ) : string
리턴 string The path to the symfony core lib directory

getClassPath() 공개 메소드

Returns the filename of the supplied class.
public getClassPath ( string $class ) : string | null
$class string The class name (case insensitive)
리턴 string | null An absolute path or null

getInstance() 공개 정적인 메소드

Retrieves the singleton instance of this class.
public static getInstance ( ) : sfCoreAutoload
리턴 sfCoreAutoload A sfCoreAutoload implementation instance.

make() 공개 정적인 메소드

This method overrides this file (__FILE__)
public static make ( )

register() 공개 정적인 메소드

Register sfCoreAutoload in spl autoloader.
public static register ( ) : void
리턴 void

unregister() 공개 정적인 메소드

Unregister sfCoreAutoload from spl autoloader.
public static unregister ( ) : void
리턴 void

프로퍼티 상세

$baseDir 보호되어 있는 프로퍼티

protected $baseDir

$classes 보호되어 있는 프로퍼티

To update it, use sfCoreAutoload::make()
protected $classes

$instance 보호되어 있는 정적으로 프로퍼티

protected static $instance

$registered 보호되어 있는 정적으로 프로퍼티

protected static $registered