在web開發中對象的序列化與反序列化常用,比較主流的有json格式與xml格式的序列化與反序列化,今天想寫個jsop的小demo,結果發現不會使用php序列化,查了一下資料,作個筆記php
php提供了json_encode和json_decode函數對對象進行json格式序列化/反序列化操做web
$data=array('Name'=>'Byron','Age'=>24,'Sex'=>'Male','Friends'=>array('Casper','Frank','Vincent')); $json=json_encode($data);//將數組序列化爲json字符串 echo $json.'<br/>'; $array_json= json_decode($json);//將json字符串反序列化爲數組 while(list($key,$value)=each($array_json)){ if(!is_array($value)){ echo "$key: $value<br/>"; }else{ echo "$key: "; foreach ($value as $current) { echo "$current  "; } echo '<br/>'; } }
php提供wddx_serialize_value和wddx_deserialize函數對對象進行xml格式序列化/反序列化操做json
$data=array('Name'=>'Byron','Age'=>24,'Sex'=>'Male','Friends'=>array('Casper','Frank','Vincent')); $xml=wddx_serialize_value($data);//把數組序列化爲xml字符串 echo $xml.'<br/>'; $array_xml=wddx_deserialize($xml);//把xml字符串反序列化爲數組 while(list($key,$value)=each($array_xml)){ if(!is_array($value)){ echo "$key: $value<br/>"; }else{ echo "$key: "; foreach ($value as $current) { echo "$current  "; } echo '<br/>'; } }
雖然因爲HTML轉碼緣由,輸出格式很奇怪,但其實序列化的字符串是這樣的數組
和json格式相比較的話,多出來很多字段函數
不少時候咱們在進行操做的時候,處理的對象並非簡單數組,而是咱們自定義的一個對象的數組,json_encode和json_decode也是能夠勝任的。自定義一個和上面數組內容相似的對象this
class Me { public $name; public $age; public $friends; function __construct($name,$age,$friends) { $this->name=$name; $this->age=$age; $this->friends=$friends; } }
$me1=new Me('Byron',24,array('Casper','Frank','Vincent')); $me2=new Me('Casper',25,array('Byron','Frank','Vincent')); $me3=new Me('Frank',26,array('Casper','Byron','Vincent')); //建立一個複雜的數組,子元素是自定義類,自定義類中包含數組字段 $array_me=array($me1,$me2,$me3); $json=json_encode($array_me);//序列化對象數組爲json字符串 echo $json.'<br/>'; $a=json_decode($json);//將json字符串反序列化爲對象數組 foreach ($a as $aa) { echo $aa->name.'<br/>'; }
能夠看到序列化出來的字符串格式很是符合預期。spa
一樣wddx_serialize_value和wddx_deserialize函數也能勝任複雜對象進行xml格式序列化/反序列化操做,使用剛纔的對象作例子code
$me1=new Me('Byron',24,array('Casper','Frank','Vincent')); $me2=new Me('Casper',25,array('Byron','Frank','Vincent')); $me3=new Me('Frank',26,array('Casper','Byron','Vincent')); //建立一個複雜的數組,子元素是自定義類,自定義類中包含數組字段 $array_me=array($me1,$me2,$me3); $xml=wddx_serialize_value($array_me);//序列化對象數組爲xml字符串 echo $xml.'<br/>'; $a=wddx_deserialize($xml);//將xml字符串反序列化爲對象數組 foreach ($a as $aa) { echo $aa->name.'<br/>'; }
生成的xml字符串結構是這樣的xml
初學php,文章多有謬誤,但願你們批評指正。對象