php魔术方
法有:1、_ _const ruct() 方法;2、_ _destr uct()方 法;3、__ get()和 __set( )方法;4、 __call ()和__c allSta tic()方 法;5、__ toStri ng()方法 ;6、__i sset() 和__uns et()方法 ;7、__c lone() 方法;小编还为您整理了以下内容,可能对您也有帮助:
php魔术方法有哪些
php对魔术方法的认识:1、【_set】属性不存在时自动设置属性;2、【__get】属性不存在或不能读取时,设置该方法可读取;3、【__call】方法不存在时,执行;4、【__callStatic】静态方法不存在时,执行。
php对魔术方法的认识:
1、_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/>';} 代码:IMoocObject::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() 输出:IMoocObject
6、__invoke
:当把对象当成函数来使用时,执行
/*** 当把对象当成函数来使用时,执行__invoke方法* @param [type] $param [参数]* @return [type] [description]*/function __invoke($param){var_dump($param);} 代码:echo $object('hello'); //将对象当函数使用,调用__invoke() 输出:string(5) "hello"
相关免费学习推荐:php编程(视频)
php魔术方法有哪些
php对魔术方法的认识:1、【_set】属性不存在时自动设置属性;2、【__get】属性不存在或不能读取时,设置该方法可读取;3、【__call】方法不存在时,执行;4、【__callStatic】静态方法不存在时,执行。
php对魔术方法的认识:
1、_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/>';} 代码:IMoocObject::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() 输出:IMoocObject
6、__invoke
:当把对象当成函数来使用时,执行
/*** 当把对象当成函数来使用时,执行__invoke方法* @param [type] $param [参数]* @return [type] [description]*/function __invoke($param){var_dump($param);} 代码:echo $object('hello'); //将对象当函数使用,调用__invoke() 输出:string(5) "hello"
相关免费学习推荐:php编程(视频)