亲宝软件园·资讯

展开

json_decode php5.2以下版本无json_decode函数的解决办法

人气:0
想了解php5.2以下版本无json_decode函数的解决办法的相关内容吗,在本文为您仔细讲解json_decode的相关知识和一些Code实例,欢迎阅读和指正,我们先划重点:json_decode,下面大家一起来学习吧。
今天写代码的时候,需要用到json_decode函数,发现php5.2以前的版本没有集成这个函数,不过我们可以通过自定义函数实现。

复制代码 代码如下:

function json_decode2($json)
{
$comment = false;
$out = '$x=';

for ($i=0; $i<strlen($json); $i++)
{
if (!$comment)
{
if (($json[$i] == '{') || ($json[$i] == '[')) $out .= ' array(';
else if (($json[$i] == '}') || ($json[$i] == ']')) $out .= ')';
else if ($json[$i] == ':') $out .= '=>';
else $out .= $json[$i];
}
else $out .= $json[$i];

if ($json[$i] == '"' && $json[($i-1)]!="\\") $comment = !$comment;
}

    eval($out . ';');
return $x;
}

不过这个返回的是Array

要返回object 则要用到 service_json类了

加载全部内容

相关教程
猜你喜欢
用户评论