取决于您的优先级。
如果性能是您的绝对驾驶特性,那么一定要使用最快的驾驶特性。在做出选择之前,请确保您充分了解差异
- 与您需要添加额外的参数以保持 UTF-8 字符不变不同:(否则它会将 UTF-8 字符转换为 Unicode 转义序列)。
serialize()
json_encode($array, JSON_UNESCAPED_UNICODE)
- JSON 将没有对象原始类的内存(它们始终作为 stdClass 的实例还原)。
- 您无法利用 JSON 和
__sleep()
__wakeup()
- 默认情况下,仅使用 JSON 序列化公共属性。(您可以实现 JsonSerializable 来更改此行为)。
PHP>=5.4
- JSON更具可移植性
可能还有其他一些我目前想不出的差异。
一个简单的速度测试来比较两者
<?php
ini_set('display_errors', 1);
error_reporting(E_ALL);
// Make a big, honkin test array
// You may need to adjust this depth to avoid memory limit errors
$testArray = fillArray(0, 5);
// Time json encoding
$start = microtime(true);
json_encode($testArray);
$jsonTime = microtime(true) - $start;
echo "JSON encoded in $jsonTime seconds\n";
// Time serialization
$start = microtime(true);
serialize($testArray);
$serializeTime = microtime(true) - $start;
echo "PHP serialized in $serializeTime seconds\n";
// Compare them
if ($jsonTime < $serializeTime) {
printf("json_encode() was roughly %01.2f%% faster than serialize()\n", ($serializeTime / $jsonTime - 1) * 100);
}
else if ($serializeTime < $jsonTime ) {
printf("serialize() was roughly %01.2f%% faster than json_encode()\n", ($jsonTime / $serializeTime - 1) * 100);
} else {
echo "Impossible!\n";
}
function fillArray( $depth, $max ) {
static $seed;
if (is_null($seed)) {
$seed = array('a', 2, 'c', 4, 'e', 6, 'g', 8, 'i', 10);
}
if ($depth < $max) {
$node = array();
foreach ($seed as $key) {
$node[$key] = fillArray($depth + 1, $max);
}
return $node;
}
return 'empty';
}