PHP中json_encode、json_decode与serialize、unserialize
发布:smiling 来源: PHP粉丝网 添加日期:2014-08-17 20:55:52 浏览: 评论:0
json_encode和json_decode的效率并没有比serialize和unserialize的效率高,在反序列化的时候性能相差两倍左右,PHP 5.3执行效率比PHP 5.2略有提升,代码如下:
- <?php
- $target = array (
- 'name' => '全能头盔',
- 'quality' => 'Blue',
- 'ti_id' => 21302,
- 'is_bind' => 1,
- 'demand_conditions' =>
- array (
- 'HeroLevel' => 1,
- ),
- 'quality_attr_sign' =>
- array (
- 'HeroStrength' => 8,
- 'HeroAgility' => 8,
- 'HeroIntelligence' => 8,
- ),
- );
- $json = json_encode($target);
- $seri = serialize($target);
- echo "json : " . strlen($json) . " ";
- echo "serialize : " . strlen($seri) . " ";
- $stime = microtime(true);
- for ($i = 0; $i < 10000; $i ++)
- {
- json_encode($target);
- }
- $etime = microtime(true);
- echo "json_encode : " . ($etime - $stime) . " ";
- //----------------------------------
- $stime = microtime(true);
- for ($i = 0; $i < 10000; $i ++)
- {
- json_decode($json);
- }
- $etime = microtime(true);
- echo "json_decode : " . ($etime - $stime) . " ";
- //----------------------------------
- $stime = microtime(true);
- for ($i = 0; $i < 10000; $i ++)
- {
- serialize($target);
- }
- $etime = microtime(true);
- echo "serialize : " . ($etime - $stime) . " ";
- //----------------------------------
- $stime = microtime(true);
- for ($i = 0; $i < 10000; $i ++)
- {
- unserialize($seri); //开源代码phpfensi.com
- }
- $etime = microtime(true);
- echo "unserialize : " . ($etime - $stime) . " ";
- echo 'DONE.';
- ?>
Tags: json_encode json_decode
- 上一篇:php 获取相对路径实例代码
- 下一篇:php获取字符串uft-8编码
相关文章
- ·PHP5.5 安装后出现不能调用json_encode 解决办法(2013-12-08)
- ·php中json_encode函数对中文的处理例子(2014-08-27)
- ·php中json_encode()和json_decode()的用法(2015-04-15)
- ·PHP json_encode() 函数详解及中文乱码问题(2021-06-25)
- ·php中json_decode和var_export的参数用法(2013-12-02)
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)