PHP魔术方法的使用示例

这篇文章主要介绍了PHP魔术方法的使用示例,本文分别讲解了__get、__set、__call、__callStatic、__toString、 __invoke等魔术方法的使用,需要的朋友可以参考下

① __get/__set:将对象的属性进行接管

当访问一个不存在的对象属性时:

index.php

  1. <?php
  2. define('BASEDIR',__DIR__); //定义根目录常量
  3. include BASEDIR.'/Common/Loader.php';
  4. spl_autoload_register('\\Common\\Loader::autoload');
  5. $obj = new \Common\Object();
  6. //在php中访问一个不存在的对象属性时
  7. echo $obj->title;

会抛出一个错误:Notice: Undefined property: Common\Object::$title in D:\practise\php\design\psr0\index.php on line 9

当在Common/Object.php 中添加 __set 和 __get 方法后

Object.php

代码如下:

  1. <?php
  2. namespace Common;
  3. class Object{
  4. function __set($key,$value){
  5. }
  6. function __get($key){
  7. }
  8. }

再执行 index.php,不会再报错。

再次修改 Common/Object.php 代码如下:

  1. <?php
  2. namespace Common;
  3. class Object{
  4. protected $array = array();
  5. function __set($key,$value){
  6. var_dump(__METHOD__);
  7. $this->array[$key] = $value;
  8. }
  9. function __get($key){
  10. var_dump(__METHOD__);
  11. return $this->array[$key];
  12. }
  13. }

index.php 代码如下:

  1. <?php
  2. define('BASEDIR',__DIR__); //定义根目录常量
  3. include BASEDIR.'/Common/Loader.php';
  4. spl_autoload_register('\\Common\\Loader::autoload');
  5. $obj = new \Common\Object();
  6. $obj->title = 'hello';
  7. echo $obj->title;

执行 index.php,页面输出:

string 'Common\Object::__set' (length=20)

string 'Common\Object::__get' (length=20)

hello

② __call/__callStatic:控制 PHP 对象方法的调用(__callStatic 用来控制类的静态方法)

当执行一个不存在的php方法时

index.php:

  1. <?php
  2. define('BASEDIR',__DIR__); //定义根目录常量
  3. include BASEDIR.'/Common/Loader.php';
  4. spl_autoload_register('\\Common\\Loader::autoload');
  5. $obj = new \Common\Object();
  6. //当执行一个不存在的php方法时
  7. $obj->test('hello',123);

执行 index.php 会报一个致命错误:Fatal error: Call to undefined method Common\Object::test() in D:\practise\php\design\psr0\index.php on line 9

如果在 Common/Object 中定义一个__call 方法,则会在方法不存在时自动回调:

  1. <?php
  2. namespace Common;
  3. class Object{
  4. function __call($func, $param){ //$func 方法名 $param 参数
  5. var_dump($func, $param);
  6. return "magic function\n"; //返回一个字符串作为返回值
  7. }
  8. }

index.php 代码如下:

  1. <?php
  2. define('BASEDIR',__DIR__); //定义根目录常量
  3. include BASEDIR.'/Common/Loader.php';
  4. spl_autoload_register('\\Common\\Loader::autoload');
  5. $obj = new \Common\Object();
  6. //当执行一个不存在的php方法时
  7. echo $obj->test('hello',123);

页面输出:

  1. string 'test' (length=4)
  2. array
  3. 0 => string 'hello' (length=5)
  4. 1 => int 123
  5. magic function

当调用一个不存在的静态方法时

Common/Object.php 代码如下:

  1. <?php
  2. namespace Common;
  3. class Object{
  4. static function __callStatic($name, $arguments) {
  5. var_dump($name, $arguments);
  6. return "magic function\n"; //返回一个字符串作为返回值
  7. }
  8. }

注意:__callStatic 方法也要声明成静态方法

index.php 代码如下:

  1. <?php
  2. define('BASEDIR',__DIR__); //定义根目录常量
  3. include BASEDIR.'/Common/Loader.php';
  4. spl_autoload_register('\\Common\\Loader::autoload');
  5. //执行一个不存在的静态方法
  6. echo Common\Object::test("hello",1234);

执行 index.php ,页面输出:

  1. string 'test' (length=4)
  2. array
  3. 0 => string 'hello' (length=5)
  4. 1 => int 1234
  5. magic function

③ __toString:将一个 PHP 对象转换成一个字符串

index.php 代码如下:

  1. <?php
  2. define('BASEDIR',__DIR__); //定义根目录常量
  3. include BASEDIR.'/Common/Loader.php';
  4. spl_autoload_register('\\Common\\Loader::autoload');
  5. $obj = new \Common\Object();
  6. echo $obj;

此时会报错: Catchable fatal error: Object of class Common\Object could not be converted to string in D:\practise\php\design\psr0\index.php on line 8

在 Object.php 中添加 __toString 方法,代码如下:

  1. <?php
  2. namespace Common;
  3. class Object{
  4. function __toString() {
  5. return __CLASS__;
  6. }
  7. }

④ __invoke:将一个 PHP 对象当成一个函数来执行时,会回调此魔术方法

index.php 代码如下:

  1. <?php
  2. define('BASEDIR',__DIR__); //定义根目录常量
  3. include BASEDIR.'/Common/Loader.php';
  4. spl_autoload_register('\\Common\\Loader::autoload');
  5. $obj = new \Common\Object();
  6. echo $obj("test");

Object.php 代码如下:

  1. <?php
  2. namespace Common;
  3. class Object{
  4. function __invoke($param) {
  5. var_dump($param);
  6. return 'invoke';
  7. }
  8. }

页面输出:

string 'test' (length=4)

invoke