7.7.12 魔术方法__set_state()

7.7.12 魔术方法__set_state()

var_export() 函数

var_export() 函数返回关于传递给该函数的变量的结构信息,它和 var_dump() 类似,不同的是其返回的表示是合法的 PHP 代码。var_export必须返回合法的php代码, 也就是说,var_export返回的代码,可以直接当作php代码赋值个一个变量。 而这个变量就会取得和被var_export一样的类型的值。

__set_state()

用var_export()输出一个对象时,__set_state()会被调用,输出内容以该魔术方法的返回值为准。

$test = new Test();
$b = var_export($test, true);
var_dump($b);

class Test {

public $a;
public static function __set_state($array) {
    $ab = new Test();
    $ab->a = 10;
    return $ab;
}

}

当调用var_export()时,这个静态 方法会被调用(自PHP 5.1.0起有效)。
本方法的唯一参数是一个数组,其中包含按array(’property’ => value, …)格式排列的类属性。

2.php

1, "two"=>"2222222", "three"=>333);

    var_dump($arr);

    echo '
'; $a = eval('$b='.var_export($arr, true).";"); var_dump($b); echo $b['one']; class Person { public $name; public $age; public $sex; public $marr = array("aaa", "bbb", "ccc", "ddd", "www"); function __construct($name, $age, $sex) { $this->name = $name; $this->age = $age; $this->sex = $sex; } function say() { echo "我的名子是:{$this->name},我的年龄是:{$this->age},我的性别是:{$this->sex}。
"; } function __toString() { return "aaaaaaaaaaaaaaaaaaa
"; } function __destruct() { echo "{$this->name} ###########
"; } function __clone() { $this->name="克隆的"; $this->age=0; } function __call($method, $args) { if(in_array($method, $this->marr)) { echo $args[0]."
"; }else{ echo "你调用的方法{$method}()不存在!
"; } } function __sleep() { echo "只串行化,name和age
"; return array("name", "age"); } function __wakeup() { echo "返串行化时自动调用我这个方法了
"; $this->age = 12; } /* function aaa($a) { echo $a; } function bbb($b) { echo $b; } function ccc($c) { echo $c; } function ddd($d) { echo $d; } */ }
name = $name;
            $this->age = $age;
            $this->sex = $sex;
        }

        function say() {
            echo "我的名子是:{$this->name},我的年龄是:{$this->age},我的性别是:{$this->sex}。
"; } function __toString() { return "aaaaaaaaaaaaaaaaaaa
"; } function __destruct() { echo "{$this->name} ###########
"; } function __clone() { $this->name="克隆的"; $this->age=0; } function __call($method, $args) { if(in_array($method, $this->marr)) { echo $args[0]."
"; }else{ echo "你调用的方法{$method}()不存在!
"; } } function __sleep() { echo "只串行化,name和age
"; return array("name", "age"); } function __wakeup() { echo "返串行化时自动调用我这个方法了
"; $this->age = 12; } static function __set_state($arr) { $p = new Person("李四", 30, "女"); $p->name=$arr['name']; $p->age = $arr['age']; return $p; } /* function aaa($a) { echo $a; } function bbb($b) { echo $b; } function ccc($c) { echo $c; } function ddd($d) { echo $d; } */ } $p = new Person("张三", 20, "男"); $p->name="李小四"; $p -> age= 33; eval('$b ='.var_export($p, true).";"); var_dump($b);

你可能感兴趣的:(7.7.12 魔术方法__set_state())