本篇文章给大家分享的是有关PHP中怎么实现串行化,小编觉得挺实用的,因此分享给大家学习,希望大家阅读完这篇文章后可以有所收获,话不多说,跟着小编一起来看看吧。
1. Person.class.php:
age = $age; $this -> name = $name; $this -> sex = $sex; } public function say(){ return $this -> age." ".$this -> name." ".$this -> sex; } function __sleep(){ //指定串行化时能提取的成员属性,没有参数,但是必须返回一个数组 $arr = array("age","name"); return $arr; } function __wakeup(){ //指定反串行化时,提取出来的值 $this -> sex = "woman"; } }
2. 串行化代码
3. 反串行化代码
以上就是PHP中怎么实现串行化,小编相信有部分知识点可能是我们日常工作会见到或用到的。希望你能通过这篇文章学到更多知识。更多详情敬请关注创新互联行业资讯频道。
分享题目:PHP中怎么实现串行化-创新互联
当前路径:http://ncjierui.cn/article/dgdcss.html