PHP 클래스 Think, thinksns

저자: liu21st ([email protected])
파일 보기 프로젝트 열기: medz/thinksns-4 1 사용 예제들

공개 메소드들

메소드 설명
__get ( $name ) : mixed 自动变量获取
__set ( $name, $value ) 自动变量设置
autoload ( string $classname ) 系统自动加载ThinkPHP类库 并且支持配置自动加载路径
instance ( string $class, string $method = '' ) : object 取得对象实例 支持调用类的静态方法

메소드 상세

__get() 공개 메소드

自动变量获取
public __get ( $name ) : mixed
$name 属性名称
리턴 mixed

__set() 공개 메소드

自动变量设置
public __set ( $name, $value )
$name 属性名称
$value 属性值

autoload() 공개 정적인 메소드

系统自动加载ThinkPHP类库 并且支持配置自动加载路径
public static autoload ( string $classname )
$classname string 对象类名

instance() 공개 정적인 메소드

取得对象实例 支持调用类的静态方法
public static instance ( string $class, string $method = '' ) : object
$class string 对象类名
$method string 类的静态方法名
리턴 object