手机
当前位置:查字典教程网 >编程开发 >php教程 >php序列化函数serialize() 和 unserialize() 与原生函数对比
php序列化函数serialize() 和 unserialize() 与原生函数对比
摘要:php中有格式化字符串并转换成数组或对象的好方法,即序列化处理。有两种序列化变量的方法。以下示例,使用serialize()和unseria...

php中有格式化字符串并转换成数组或对象的好方法,即序列化处理。

有两种序列化变量的方法。

以下示例,使用 serialize() 和 unserialize() 函数:

// a complex array $myvar = array( 'hello', 42, array(1,'two'), 'apple' ); // convert to a string $string = serialize($myvar); echo $string; /* prints a:4:{i:0;s:5:"hello";i:1;i:42;i:2;a:2:{i:0;i:1;i:1;s:3:"two";}i:3;s:5:"apple";} */ // you can reproduce the original variable $newvar = unserialize($string); print_r($newvar); /* prints Array ( [0] => hello [1] => 42 [2] => Array ( [0] => 1 [1] => two ) [3] => apple ) */

这是原生的 PHP 序列化方法。

然而,由于 JSON 近年来大受欢迎,PHP5.2 中已经加入了对 JSON 格式的支持。

现在你可以使用 json_encode() 和 json_decode() 函数:

// a complex array $myvar = array( 'hello', 42, array(1,'two'), 'apple' ); // convert to a string $string = json_encode($myvar); echo $string; /* prints ["hello",42,[1,"two"],"apple"] */ // you can reproduce the original variable $newvar = json_decode($string); print_r($newvar); /* prints Array ( [0] => hello [1] => 42 [2] => Array ( [0] => 1 [1] => two ) [3] => apple ) */

这将更为行之有效,尤其与 JavaScript 等许多其他语言兼容。

注意:对于复杂的对象,某些信息可能会丢失。

以上所述就是本文的全部内容了,希望大家能够喜欢。

【php序列化函数serialize() 和 unserialize() 与原生函数对比】相关文章:

详细介绍PHP应用提速面面观

使用sockets:从新闻组中获取文章(一)

一个很方便的 XML 类!!原创的噢

判“新”函数:得到今天与明天的秒数

打造计数器DIY三步曲(上)

PHP设计聊天室步步通

example1.php

PHP生成json和xml类型接口数据格式

php动态函数调用方法

PHP的类 功能齐全的发送邮件类

精品推荐
分类导航