PHP의 매직 메소드 이해: 1. [_set] 속성은 속성이 존재하지 않을 때 자동으로 설정합니다. 2. [__get] 속성이 존재하지 않거나 읽을 수 없는 경우 이를 읽을 수 있도록 메소드를 설정합니다. [__call] 메소드가 존재하지 않는 경우 실행됩니다. 4. [__callStatic] 정적 메소드가 존재하지 않는 경우 실행됩니다.
php의 매직 메소드 이해:
1. _set
: 속성이 존재하지 않을 때 자동으로 설정 _set
:属性不存在时自动设置属性
/** * 属性不存在时通过__set自动设置属性 * @param $key [键名] * @param $value [属性值] */ function __set($key,$value){ $this->arr[$key] = $value; } 代码: $object->title = 'blue'; //设置不存在的属性,调用__set() echo $object->title,'<br/>'; //输出不存在的属性,调用__get() 输出: blue
2、__get
:属性不存在或不能读取时,设置该方法可读取
/** * 属性不存在或不能读取(属性为私有private)时,通过__get读取 * @param $key 键名 * @return 属性 */ function __get($key){ return $this->arr[$key]; }
3、__call
:方法不存在时,执行
/** * 方法不存在时,执行__call方法 * @param $func [方法名] * @param $param [参数] * @return [description] */ function __call($func,$param){ var_dump($func); echo '<br/>'; var_dump($param); echo '<br/>'; } 代码: $object -> show('hello','world'); //调用不存在的方法,调用__call() 输出: string(4) "show" array(2) { [0]=> string(5) "hello" [1]=> string(5) "world" }
4、__callStatic
:静态方法不存在时,执行
/** * 静态方法不存在时,执行__callStatic方法 * @param $func [方法名] * @param $param [参数] * @return [description] */ static function __callStatic($func,$param){ var_dump($func); echo '<br/>'; var_dump($param); echo '<br/>'; } 代码: IMooc\Object::show('hello','world'); //调用不存在的静态方法,调用__callStatic() 输出: string(4) "show" array(2) { [0]=> string(5) "hello" [1]=>string(5) "world" }
5、__toString
:当对象转换为字符串时,执行
/** * 当对象转换为字符串时,执行__toString方法 * @return string [description] */ function __toString{ return __CLASS__; } 代码: echo $object,'<br/>'; //将对象以字符串形式输出,调用__toString() 输出: IMooc\Object
6、__invoke
/** * 当把对象当成函数来使用时,执行__invoke方法 * @param [type] $param [参数] * @return [type] [description] */ function __invoke($param){ var_dump($param); } 代码: echo $object('hello'); //将对象当函数使用,调用__invoke() 输出: string(5) "hello"2. : 속성이 없거나 읽을 수 없는 경우 메소드를 읽을 수 있도록 설정합니다
rrreeerrreee🎜6,3.
5,__call
: 메소드가 없으면 실행합니다rrreee4. : 정적 메소드가 존재하지 않을 경우
rrreee__toString
실행: 객체가 문자열로 변환되면
__invoke
실행 >: 객체가 함수로 사용되는 경우 🎜rrreee🎜🎜를 실행합니다. 관련 무료 학습 권장 사항: 🎜php 프로그래밍🎜(동영상) 🎜🎜🎜위 내용은 PHP의 매직 메소드 이해의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!