Home php教程 PHP源码 The use of serialization in PHP

The use of serialization in PHP

Aug 20, 2016 am 08:47 AM

Jump to [1] [2] [3] [Full screen preview]
<?
	/*
		作者 : shyhero
		邮箱 : shyhero@
		Q  Q : 1757424878

	 */
	class Person{				//声明一个Person类
		public $age;
		private $name;
		protected $sex;

		public function __construct($age="",$name="",$sex=""){
			$this -> 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";
		}
	}

Copy after login

2. [code][PHP] code Jump to [1] [2] [3] [Full screen preview]

<?
	require("./Person.class.php");

	$p = new Person(21,"du","man");	//定义Person类对象
	$pString = serialize($p);	//对对象进行串行化
	file_put_contents("./file.txt",$pString);//存到文件里
Copy after login

3. [code][PHP] code Jump to [1] [2] [3] [Full screen preview]

<?
	require("./Person.class.php");//反串行化时,也要包含原类

	$pString = file_get_contents("./file.txt");//从文件中取出串行化的值
	$p = unserialize($pString);//进行反串行化	
	var_dump($p);	//这个 $p就是之前那个串行化的对象,一样用,但是里面的值被我改了
Copy after login
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)