PHP魔术方法的使用示例
① __get/__set将对象的属性进行接管
当访问一个不存在的对象属性时
index.php
<?php
define('BASEDIR',__DIR__); //定义根目录常量
include BASEDIR.'/Common/Loader.php';
spl_autoload_register('\\Common\\Loader::autoload');
$obj = new \Common\Object();
//在php中访问一个不存在的对象属性时
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
<?php
namespace Common;
class Object{
function __set($key,$value){
}
function __get($key){
}
}
再执行 index.php,不会再报错。
修改 Common/Object.php
<?php
namespace Common;
class Object{
protected $array = array();
function __set($key,$value){
var_dump(__METHOD__);
$this->array[$key] = $value;
}
function __get($key){
var_dump(__METHOD__);
return $this->array[$key];
}
}
index.php
<?php
define('BASEDIR',__DIR__); //定义根目录常量
include BASEDIR.'/Common/Loader.php';
spl_autoload_register('\\Common\\Loader::autoload');
$obj = new \Common\Object();
$obj->title = 'hello';
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:
<?php
define('BASEDIR',__DIR__); //定义根目录常量
include BASEDIR.'/Common/Loader.php';
spl_autoload_register('\\Common\\Loader::autoload');
$obj = new \Common\Object();
//当执行一个不存在的php方法时
$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 方法,则会在方法不存在时自动回调
<?php
namespace Common;
class Object{
function __call($func, $param){ //$func 方法名 $param 参数
var_dump($func, $param);
return "magic function\n"; //返回一个字符串作为返回值
}
}
index.php
<?php
define('BASEDIR',__DIR__); //定义根目录常量
include BASEDIR.'/Common/Loader.php';
spl_autoload_register('\\Common\\Loader::autoload');
$obj = new \Common\Object();
//当执行一个不存在的php方法时
echo $obj->test('hello',123);
页面输出
string 'test' (length=4)
array
0 => string 'hello' (length=5)
1 => int 123
magic function
当调用一个不存在的静态方法时
Common/Object.php
<?php
namespace Common;
class Object{
static function __callStatic($name, $arguments) {
var_dump($name, $arguments);
return "magic function\n"; //返回一个字符串作为返回值
}
}
注意__callStatic 方法也要声明成静态方法
index.php
<?php
define('BASEDIR',__DIR__); //定义根目录常量
include BASEDIR.'/Common/Loader.php';
spl_autoload_register('\\Common\\Loader::autoload');
//执行一个不存在的静态方法
echo Common\Object::test("hello",1234);
执行 index.php ,页面输出
string 'test' (length=4)
array
0 => string 'hello' (length=5)
1 => int 1234
magic function
③ __toString将一个 PHP 对象转换成一个字符串
index.php
<?php
define('BASEDIR',__DIR__); //定义根目录常量
include BASEDIR.'/Common/Loader.php';
spl_autoload_register('\\Common\\Loader::autoload');
$obj = new \Common\Object();
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 方法
<?php
namespace Common;
class Object{
function __toString() {
return __CLASS__;
}
}
④ __invoke将一个 PHP 对象当成一个函数来执行时,会回调此魔术方法
index.php
<?php
define('BASEDIR',__DIR__); //定义根目录常量
include BASEDIR.'/Common/Loader.php';
spl_autoload_register('\\Common\\Loader::autoload');
$obj = new \Common\Object();
echo $obj("test");
Object.php
<?php
namespace Common;
class Object{
function __invoke($param) {
var_dump($param);
return 'invoke';
}
}
页面输出
string 'test' (length=4)
invoke
编程语言
- 如何快速学会编程 如何快速学会ug编程
- 免费学编程的app 推荐12个免费学编程的好网站
- 电脑怎么编程:电脑怎么编程网咯游戏菜单图标
- 如何写代码新手教学 如何写代码新手教学手机
- 基础编程入门教程视频 基础编程入门教程视频华
- 编程演示:编程演示浦丰投针过程
- 乐高编程加盟 乐高积木编程加盟
- 跟我学plc编程 plc编程自学入门视频教程
- ug编程成航林总 ug编程实战视频
- 孩子学编程的好处和坏处
- 初学者学编程该从哪里开始 新手学编程从哪里入
- 慢走丝编程 慢走丝编程难学吗
- 国内十强少儿编程机构 中国少儿编程机构十强有
- 成人计算机速成培训班 成人计算机速成培训班办
- 孩子学编程网上课程哪家好 儿童学编程比较好的
- 代码编程教学入门软件 代码编程教程