|
PHP5.2版本之前默认不安装和支持JSON的函数
・json_encode
・json_decode
以下是替代品。
斜线的相互转换似乎有点问题;跟PHP5.2里安装的JSON也没有互换性,注意下
(附记 PHP5.1.x里的JSON安装过程)
[php]
if (!function_exists(‘json_encode’))
{
function json_encode($a=false)
{
if (is_null($a)) return ‘null’;
if ($a === false) return ‘false’;
if ($a === true) return ‘true’;
if (is_scalar($a))
{
if (is_float($a))
{
// Always use “.” for floats.
return floatval(str_replace(“,”, “.”, strval($a)));
}
if (is_string($a))
{
static $jsonReplaces = array(array(“\\”, “/”, “\n”, “\t”, “\r”, “\b”, “\f”, ‘”‘), array(‘\\\\’, ‘\\/’, ‘\\n’, ‘\\t’, ‘\\r’, ‘\\b’, ‘\\f’, ‘\”‘));
return ‘”‘ . str_replace($jsonReplaces[0], $jsonReplaces[1], $a) . ‘”‘;
}
else
return $a;
}
$isList = true;
for ($i = 0, reset($a); $i < count($a); $i++, next($a))
{
if (key($a) !== $i)
{
$isList = false;
break;
}
}
$result = array();
if ($isList)
{
foreach ($a as $v) $result[] = json_encode($v);
return ‘[' . join(',', $result) . ']‘;
}
else
{
foreach ($a as $k => $v) $result[] = json_encode($k).’:’.json_encode($v);
return ‘{‘ . join(‘,’, $result) . ‘}’;
}
}
}
if ( !function_exists(‘json_decode’) ){
function json_decode($json)
{
// Author: walidator.info 2009
$comment = false;
$out = ‘$x=’;
for ($i=0; $i
{
if (!$comment)
{
if ($json[$i] == ‘{‘) $out .= ‘ array(‘;
else if ($json[$i] == ‘}’) $out .= ‘)’;
else if ($json[$i] == ‘:’) $out .= ‘=>’;
else $out .= $json[$i];
}
else $out .= $json[$i];
if ($json[$i] == ‘”‘) $comment = !$comment;
}
eval($out . ‘;’);
return $x;
}
}
[/php]
For JSON support in older versions of PHP you can use the Services_JSON class, available at http://pear.php.net/pepr/pepr-proposal-show.php?id=198
[php]
if ( !function_exists(‘json_decode’) ){
function json_decode($content, $assoc=false){
require_once ‘Services/JSON.php’;
if ( $assoc ){
$json = new Services_JSON(SERVICES_JSON_LOOSE_TYPE);
} else {
$json = new Services_JSON;
}
return $json->decode($content);
}
}
if ( !function_exists(‘json_encode’) ){
function json_encode($content){
require_once ‘Services/JSON.php’;
$json = new Services_JSON;
return $json->encode($content);
}
}
[/php]
=================================
附记(PHP安装JSON包):
$ pecl install json
安装路径:/usr/lib/php/modules/json.so
-新建配置文件
[bash]
$ vi /etc/php.d/json.ini
[/bash]
-写入
[ini]
extension=json.so
[/ini]
-保存 Shift+ZZ
-重启Apache
[bash]
$ /etc/init.d/httpd restart
[/bash]
|