php 面向对象与反序列

目录

1.类和对象

2.序列化

3.反序列化 


1.类和对象

name;
	}
	//函数
	function eat() {
		echo 'apple';
	}
}

//对象
$a = new cl();
echo $a->name.'
'; //直接调用类里的属性 echo $a->eat().'
';//直接调用类里的函数 ?>

2.序列化

序列化,将其他的数据转换成字符串
';
	echo $b.'
'; ?>

打印效果

array(4) { [0]=> string(3) "one" [1]=> int(23) [2]=> string(5) "apple" [3]=> string(5) "three" }
a:4:{i:0;s:3:"one";i:1;i:23;i:2;s:5:"apple";i:3;s:5:"three";}

3.反序列化 

将序列化的字符串还原成原来的数据类型
';
	echo $b.'
'; //反序列化 $c = unserialize($b); var_dump($c); ?>

打印效果

array(4) { [0]=> string(3) "one" [1]=> int(23) [2]=> string(5) "apple" [3]=> string(5) "three" }
a:4:{i:0;s:3:"one";i:1;i:23;i:2;s:5:"apple";i:3;s:5:"three";}
array(4) { [0]=> string(3) "one" [1]=> int(23) [2]=> string(5) "apple" [3]=> string(5) "three" }

你可能感兴趣的:(php,php,android,开发语言)