PHP类中的魔术方法(Magic Method)简明总结

这篇文章主要介绍了PHP类中的魔术方法(Magic Method)简明总结,这些方法包括__construct()、__destruct()、__call()、__callStatic()、__get()、__set()、__toString()等,需要的朋友可以参考下

1. __construct()和__destruct()

在实例被 创建/销毁 的时候被调用,都可以传递0个或多个参数。

  1. class A
  2. {
  3. function A()
  4. {
  5. echo "build A";
  6. }
  7. function __destruct()
  8. {
  9. echo "destroy A";
  10. }
  11. }
  12. $obj = new A();
  13. //unset($obj);
  14. Note:The destructor method will be called as soon as there are no other references to a particular object, or in any order during the shutdown sequence.

关于构造函数,PHP5.3.3开始,一个定义在某个特定的命名空间里的class中以类名命名的方法将不再被认为是构造函数。在无命名空间的类中与原来一样依旧是构造函数。如:

  1. namespace Foo;
  2. class Bar {
  3. public function Bar() {
  4. // treated as constructor in PHP 5.3.0-5.3.2
  5. // treated as regular method as of PHP 5.3.3
  6. }
  7. }

如果没有namespace Foo; 那么Bar()还将被当作构造函数。另外,如果存在下面的情况:

  1. function __construct()
  2. {
  3. echo "construct A";
  4. }
  5. function A()
  6. {
  7. echo "build A";
  8. }
  9. function __destruct()
  10. {
  11. echo "destroy A";
  12. }
  13. }

即既包含__construct()又包含与类名同名的函数,那么将只调用__construct()。

2. __call()和__callStatic()

当尝试调用一个不存在的方法时调用该方法。两个参数,一个是方法名,一个是被调用方法的参数数组。

  1. class MethodTest
  2. {
  3. public function __call($name, $arguments)
  4. {
  5. // Note: value of $name is case sensitive.
  6. echo "Calling object method '$name' "
  7. . implode(' ', $arguments). "<br>";
  8. }
  9. public static function __callStatic($name, $arguments)
  10. {
  11. // Note: value of $name is case sensitive.
  12. echo "Calling static method '$name' "
  13. . implode(' ', $arguments). "<br>";
  14. }
  15. }
  16. $obj = new MethodTest;
  17. $obj->runTest('in','object','context');
  18. MethodTest::runTest('in','static','context');

其中,$arguments作为一个array传入。运行结果:

Calling object method 'runTest' in object context

Calling static method 'runTest' in static context

还要注意函数的作用域protected和private:

  1. class TestMagicCallMethod {
  2. public function foo()
  3. {
  4. echo __METHOD__.PHP_EOL."<br>";
  5. }
  6. public function __call($method, $args)
  7. {
  8. echo __METHOD__.PHP_EOL."<br>";
  9. if(method_exists($this, $method))
  10. {
  11. $this->$method();
  12. }
  13. }
  14. protected function bar()
  15. {
  16. echo __METHOD__.PHP_EOL."<br>";
  17. }
  18. private function baz()
  19. {
  20. echo __METHOD__.PHP_EOL."<br>";
  21. }
  22. }
  23. $test = new TestMagicCallMethod();
  24. $test->foo();
  25. /**
  26. * Outputs:
  27. * TestMagicCallMethod::foo
  28. */
  29. $test->bar();
  30. /**
  31. * Outputs:
  32. * TestMagicCallMethod::__call
  33. * TestMagicCallMethod::bar
  34. */
  35. $test->baz();
  36. /**
  37. * Outputs:
  38. * TestMagicCallMethod::__call
  39. * TestMagicCallMethod::baz
  40. */

3.__get()和__set()

当试图读取一个对象并不存在的属性的时候被调用。

Note:我们可以用这个函数实现类似java中反射的各种操作。

  1. class Test
  2. {
  3. public function __get($key)
  4. {
  5. echo $key . " not exists";
  6. }
  7. public function __set($key,$value)
  8. {
  9. echo $key . " = ".$value;
  10. }
  11. }
  12. $t = new Test();
  13. echo $t->name."<br>";
  14. $t->name = "abc";
  15. 输出:
  16. name not exists
  17. name = abc

4. __toString()

这个方法类似于java的toString()方法,当我们直接打印对象的时候回调用这个函数,函数必须返回一个string。

  1. class Test
  2. {
  3. private $name = "abc";
  4. private $age = 12;
  5. public function __toString()
  6. {
  7. return "name : $this->name, age : $this->age";
  8. }
  9. }
  10. $t = new Test();
  11. echo $t;
  12. 输出:
  13. name : abc, age : 12