PHP 클래스 CI_Driver, TastyIgniter

파일 보기 프로젝트 열기: tastyigniter/tastyigniter 1 사용 예제들

보호된 프로퍼티들

프로퍼티 타입 설명
$_methods array List of methods in the parent class
$_parent object Instance of the parent class
$_properties array List of properties in the parent class
$_reflections array Array of methods and properties for the parent class(es)

공개 메소드들

메소드 설명
__call ( $method, $args = [] ) : mixed __call magic method
__get ( $var ) : mixed __get magic method
__set ( $var, $val ) : mixed __set magic method
decorate ( $parent ) : void Decorate

메소드 상세

__call() 공개 메소드

Handles access to the parent driver library's methods
public __call ( $method, $args = [] ) : mixed
리턴 mixed

__get() 공개 메소드

Handles reading of the parent driver library's properties
public __get ( $var ) : mixed
리턴 mixed

__set() 공개 메소드

Handles writing to the parent driver library's properties
public __set ( $var, $val ) : mixed
리턴 mixed

decorate() 공개 메소드

Decorates the child with the parent driver lib's methods and properties
public decorate ( $parent ) : void
리턴 void

프로퍼티 상세

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

List of methods in the parent class
protected array $_methods
리턴 array

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

Instance of the parent class
protected object $_parent
리턴 object

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

List of properties in the parent class
protected array $_properties
리턴 array

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

Array of methods and properties for the parent class(es)
protected static array $_reflections
리턴 array