我正在使用json_encode函数它在我的localhost中运行良好...当我移动到服务器它不工作...我googled并发现它不支持5.1版本...我想使用此功能。任何其他可能性?我需要升级到5.2还是wat?
答案 0 :(得分:14)
这是我成功用于php 5.1的内容(取自http://www.php.net/json_encode下的评论):
/**
* Supplementary json_encode in case php version is < 5.2 (taken from http://gr.php.net/json_encode)
*/
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) . '}';
}
}
}
答案 1 :(得分:2)
是json_encode
在PHP 5&gt; = 5.2.0中可用,您必须升级(推荐)或找到实现该功能的库。
答案 2 :(得分:2)
在评论中查看http://de.php.net/json_encode。有些人提供了PHP编写的功能,它也是如此。只有性能(很可能)不如原生性能好; - )。