当一个对象被php串行化,php会调用__sleep方法(如果存在的话). 在反串行化一个对象后,php 会调用__wakeup方法. 这两个方法都不接受参数. __sleep方法必须返回一个数组,包含需要串行化的属性. php会抛弃其它属性的值。如果没有__sleep方法,php将保存所有属性。
php/* * * @authors peng--jun * @email 1098325951@qq.com * @date 2016-01-23 14:40:38 * @link http://www.cnblogs.com/xs-yqz/ * @version $id$ ========================================== */ header(content-type: text/html; charset=utf-8); class person{ private $name; private $sex; private $age; function __construct($name,$age,$sex){ $this->name = $name; $this->age = $age; $this->sex = $sex; } function say(){ echo 我的名字:.$this->name.性别为: .$this->sex.年龄为:.$this->age; } //在类中添加此方法,在串行化的时候自动调用并返回数组 function __sleep(){ $arr = array(name,age);//数组中的成员$name和$age将被串行化,成员$sex则将被忽略。return($arr);//使用__sleep()方法的时候必须返回一个数组。 } //在反串行化对象时自动调用该方法,没有参数也没有返回值 function __wakeup(){ $this->age = 40;//在重新组织对象的时候,为新对象中的$age属性重新赋值 }} $person1 = new person(张三,20,男); $person1_string = serialize($person1); echo $person1_string.
;//反串行化对象,并自动调用了__wakeup()方法重新为独享中的age赋值。$person2 = unserialize($person1_string);$person2->say(); ?>
输出的结果为:
o:6:person:2:{s:12:personname;s:6:张三;s:11:personage;i:20;}我的名字:张三性别为: 年龄为:40
2.将串行化的字符串保存到文件中,从文件中读取字符串,反串性化实例。
header(content-type: text/html; charset=utf-8); class person{ private $name; private $sex; private $age; function __construct($name,$age,$sex){ $this->name = $name; $this->age = $age; $this->sex = $sex; } function say(){ echo 我的名字:.$this->name.性别为: .$this->sex.年龄为:.$this->age; } } $person1 = new person(张三,21,男); $person1_string = serialize($person1); file_put_contents(file.txt, $person1_string);
header(content-type: text/html; charset=utf-8); class person{ private $name; private $sex; private $age; function __construct($name,$age,$sex){ $this->name = $name; $this->age = $age; $this->sex = $sex; } function say(){ echo 我的名字:.$this->name. 性别为:.$this->sex. 年龄为:.$this->age; } } $person2_string = file_get_contents(file.txt); $person2 = unserialize($person2_string);//反串性化重新形成对象$person2. $person2->say();?>
以上就介绍了php中对象的串行化,包括了方面的内容,希望对php教程有兴趣的朋友有所帮助。
