3v4l.org

run code in 300+ PHP versions simultaneously
<?php class json { protected $_jsonDefect = true; public function __construct() { $this->_jsonDefect = version_compare(PHP_VERSION, '5.4.0', '<'); } public function jsonEncode($data) { // 如果php json支持不编码unicode,直接使用 if (!$this->_jsonDefect) { return json_encode($data, JSON_UNESCAPED_UNICODE); } // 否则,先递归urlencode,转成JSON格式后urldecode $proResult = $this->_preproccessJson($data); return urldecode(json_encode($proResult)); } /** * 预处理JSON数据,递归对数据进行urlencode处理,以免结果中文编码成unicode * * @param string|array $data * @return string|array */ protected function _preproccessJson($data) { if (!is_array($data)) { return urlencode($data); } $result = array(); foreach ($data as $key => $value) { $result[urlencode($key)] = is_array($value) ? $this->_preproccessJson($value) : urlencode($value); } return $result; } } $json = new json(); $arr = array('name'=>'中文','test'=>'ok','arr'=>array('key'=>'中文')); var_dump($json->jsonEncode($arr)); var_dump(json_encode($arr)); var_dump($json->jsonEncode('中文')); var_dump(json_encode('中文'));

Here you find the average performance (time & memory) of each version. A grayed out version indicates it didn't complete successfully (based on exit-code).

VersionSystem time (s)User time (s)Memory (MiB)
8.3.60.0030.01716.75
8.3.50.0080.01123.06
8.3.40.0040.01118.79
8.3.30.0150.00019.10
8.3.20.0070.00020.26
8.3.10.0080.00020.52
8.3.00.0040.00418.98
8.2.180.0090.01218.29
8.2.170.0100.00322.96
8.2.160.0100.00320.39
8.2.150.0060.00324.18
8.2.140.0080.00024.66
8.2.130.0040.00426.16
8.2.120.0040.00419.95
8.2.110.0030.00620.39
8.2.100.0060.00617.91
8.2.90.0050.00319.09
8.2.80.0080.00017.97
8.2.70.0000.00917.50
8.2.60.0080.00017.93
8.2.50.0000.00818.07
8.2.40.0040.00417.97
8.2.30.0000.00821.32
8.2.20.0040.00417.63
8.2.10.0040.00418.13
8.2.00.0030.00517.74
8.1.280.0070.01025.92
8.1.270.0050.00322.09
8.1.260.0080.00026.35
8.1.250.0030.00528.09
8.1.240.0040.00422.42
8.1.230.0040.00720.95
8.1.220.0000.00818.77
8.1.210.0040.00418.92
8.1.200.0030.00617.22
8.1.190.0030.00517.53
8.1.180.0000.00818.10
8.1.170.0000.00818.59
8.1.160.0080.00318.92
8.1.150.0040.00418.91
8.1.140.0000.00717.47
8.1.130.0000.00717.77
8.1.120.0050.00317.54
8.1.110.0050.00317.48
8.1.100.0000.00717.50
8.1.90.0000.00717.45
8.1.80.0020.00517.39
8.1.70.0030.00317.44
8.1.60.0060.00317.61
8.1.50.0050.00317.56
8.1.40.0040.00417.44
8.1.30.0050.00317.67
8.1.20.0000.00717.62
8.1.10.0060.00317.55
8.1.00.0030.00617.32
8.0.300.0070.00419.90
8.0.290.0070.00017.18
8.0.280.0070.00018.47
8.0.270.0000.00717.20
8.0.260.0040.00417.34
8.0.250.0000.00717.02
8.0.240.0070.00016.94
8.0.230.0050.00316.91
8.0.220.0070.00016.83
8.0.210.0040.00416.81
8.0.200.0000.00816.99
8.0.190.0000.00817.02
8.0.180.0000.00716.84
8.0.170.0000.00816.91
8.0.160.0030.00416.83
8.0.150.0040.00416.89
8.0.140.0030.00316.85
8.0.130.0090.00013.32
8.0.120.0040.00416.92
8.0.110.0040.00416.86
8.0.100.0000.00816.96
8.0.90.0070.00016.75
8.0.80.0120.00916.89
8.0.70.0070.00016.80
8.0.60.0070.00016.93
8.0.50.0070.00016.92
8.0.30.0140.00917.10
8.0.20.0120.00817.40
8.0.10.0000.00817.00
8.0.00.0140.00616.77
7.4.330.0050.00015.02
7.4.320.0030.00316.58
7.4.300.0000.00716.47
7.4.290.0070.00016.60
7.4.280.0040.00416.61
7.4.270.0050.00216.62
7.4.260.0000.01016.50
7.4.250.0080.00016.51
7.4.240.0010.00616.62
7.4.230.0030.00316.73
7.4.220.0070.01216.39
7.4.210.0100.00616.45
7.4.200.0000.00716.65
7.4.160.0060.00916.48
7.4.150.0030.01517.40
7.4.140.0100.00717.86
7.4.130.0100.01016.60
7.4.120.0110.00616.49
7.4.110.0090.00916.61
7.4.100.0100.00716.50
7.4.90.0080.00816.66
7.4.80.0070.01016.51
7.4.70.0060.01116.54
7.4.60.0120.00416.55
7.4.50.0040.00416.20
7.4.40.0140.00716.58
7.4.30.0100.00616.57
7.4.00.0040.00714.91
7.3.330.0000.00613.14
7.3.320.0030.00313.25
7.3.310.0070.00016.21
7.3.300.0030.00316.33
7.3.290.0060.00916.33
7.3.280.0090.00816.29
7.3.270.0100.00717.40
7.3.260.0110.01116.31
7.3.250.0100.01116.41
7.3.240.0110.00616.39
7.3.230.0150.00016.39
7.3.210.0150.00616.24
7.3.200.0150.00319.39
7.3.190.0050.01516.34
7.3.180.0030.01716.42
7.3.170.0030.01216.46
7.3.160.0100.00616.33
7.2.330.0090.00916.71
7.2.320.0060.01016.79
7.2.310.0140.00316.79
7.2.300.0170.00016.86
7.2.290.0090.00916.74
7.2.60.0040.00816.74
7.2.00.0040.00819.47
7.1.200.0040.01115.83
7.1.100.1130.00316.07
7.1.70.0060.01017.23
7.1.60.0130.01319.34
7.1.50.0100.01416.57
7.1.00.0030.07722.48
7.0.200.0670.00314.78
7.0.140.0070.06722.09
7.0.90.0400.07319.89
7.0.80.0400.04719.90
7.0.70.0570.05019.92
7.0.60.0530.06719.95
7.0.50.0600.08320.36
7.0.40.0130.04020.05
7.0.30.0130.07320.00
7.0.20.0030.08320.01
7.0.10.0100.08320.13
7.0.00.0100.08020.02
5.6.240.0070.05320.55
5.6.230.0170.06720.68
5.6.220.0100.07320.67
5.6.210.0170.07320.59
5.6.200.0100.07720.95
5.6.190.0000.04721.02
5.6.180.0070.08321.06
5.6.170.0100.04021.03
5.6.160.0130.08321.12
5.6.150.0100.04721.11
5.6.140.0100.07321.10
5.6.130.0030.06721.02
5.6.120.0030.09021.05
5.6.110.0030.08721.17
5.6.100.0100.05720.94
5.6.90.0130.07320.92
5.6.80.0100.06320.47
5.6.70.0100.07020.43
5.6.60.0100.04320.33
5.6.50.0100.07320.42
5.6.40.0070.07720.53
5.6.30.0170.06320.41
5.6.20.0100.07020.36
5.6.10.0030.08320.34
5.6.00.0130.07320.36
5.5.380.0070.07720.43
5.5.370.0100.07720.46
5.5.360.0100.07020.46
5.5.350.0070.04720.52
5.5.340.0100.08320.81
5.5.330.0000.08720.87
5.5.320.0100.04720.66
5.5.310.0130.07020.88
5.5.300.0100.07720.89
5.5.290.0030.08020.80
5.5.280.0000.08320.89
5.5.270.0070.09020.77
5.5.260.0100.07020.93
5.5.250.0100.07020.55
5.5.240.0070.06020.28
5.5.230.0030.04320.19
5.5.220.0070.07020.21
5.5.210.0000.05020.19
5.5.200.0030.08020.27
5.5.190.0030.08720.09
5.5.180.0100.07320.22
5.5.160.0100.05020.15
5.5.150.0070.04320.23
5.5.140.0130.03720.28
5.5.130.0030.08320.27
5.5.120.0000.05320.19
5.5.110.0030.08320.23
5.5.100.0030.08320.08
5.5.90.0100.06019.93
5.5.80.0070.08020.16
5.5.70.0100.07020.07
5.5.60.0070.08020.06
5.5.50.0070.04320.08
5.5.40.0030.08720.14
5.5.30.0070.08020.07
5.5.20.0070.06720.09
5.5.10.0100.07319.98
5.5.00.0070.08320.05
5.4.450.0030.04719.45
5.4.440.0030.08019.37
5.4.430.0070.08019.17
5.4.420.0070.08019.35
5.4.410.0100.05719.24
5.4.400.0000.06019.09
5.4.390.0030.05319.13
5.4.380.0070.06719.05
5.4.370.0100.07019.18
5.4.360.0100.07718.87
5.4.350.0100.07319.03
5.4.340.0070.04019.05
5.4.320.0070.08319.14
5.4.310.0100.06019.05
5.4.300.0030.06319.12
5.4.290.0100.03319.14
5.4.280.0070.07319.13
5.4.270.0130.07319.03
5.4.260.0100.07719.09
5.4.250.0100.07719.02
5.4.240.0130.07718.84
5.4.230.0030.05719.14
5.4.220.0130.04319.04
5.4.210.0070.07719.14
5.4.200.0100.08019.12
5.4.190.0070.06319.02
5.4.180.0030.04019.07
5.4.170.0030.05319.22
5.4.160.0070.07019.02
5.4.150.0030.07318.88
5.4.140.0100.07316.43
5.4.130.0070.07016.30
5.4.120.0170.06016.14
5.4.110.0070.07316.51
5.4.100.0170.04716.36
5.4.90.0130.06316.46
5.4.80.0100.05016.39
5.4.70.0000.07716.40
5.4.60.0100.06716.46
5.4.50.0070.06016.48
5.4.40.0070.07316.42
5.4.30.0070.05016.29
5.4.20.0030.04016.40
5.4.10.0100.03316.48
5.4.00.0070.03315.82
5.3.290.0030.07714.63
5.3.280.0100.04714.73
5.3.270.0070.06014.71
5.3.260.0070.06014.57
5.3.250.0030.04314.63
5.3.240.0070.06714.54
5.3.230.0170.05314.60
5.3.220.0070.04314.72
5.3.210.0000.08014.53
5.3.200.0100.06714.69
5.3.190.0070.07714.71
5.3.180.0130.07014.53
5.3.170.0100.07714.54
5.3.160.0100.04714.64
5.3.150.0030.08014.64
5.3.140.0130.06314.54
5.3.130.0100.05014.59
5.3.120.0070.07314.54
5.3.110.0100.04714.65
5.3.100.0000.07714.09
5.3.90.0000.05313.99
5.3.80.0070.06314.16
5.3.70.0070.06714.05
5.3.60.0100.07314.00
5.3.50.0100.06714.06
5.3.40.0070.07313.88
5.3.30.0100.07013.98
5.3.20.0070.07013.63
5.3.10.0100.03313.58
5.3.00.0030.03713.55
5.2.170.0000.06011.16
5.2.160.0030.06011.25
5.2.150.0070.04311.26
5.2.140.0000.06011.25
5.2.130.0100.04011.02
5.2.120.0000.04010.97
5.2.110.0000.04311.21
5.2.100.0030.06311.20
5.2.90.0100.05711.12
5.2.80.0000.05011.11
5.2.70.0130.02711.17
5.2.60.0030.06710.98
5.2.50.0070.06011.09
5.2.40.0100.04711.01
5.2.30.0070.03311.00
5.2.20.0030.05310.98
5.2.10.0070.03010.89
5.2.00.0030.05010.80
5.1.60.0030.03710.08
5.1.50.0000.03310.07
5.1.40.0000.0439.98
5.1.30.0030.06010.40
5.1.20.0070.05710.41
5.1.10.0000.0479.98
5.1.00.0100.05310.07
5.0.50.0000.0338.55
5.0.40.0000.0478.49
5.0.30.0070.0438.27
5.0.20.0070.0408.29
5.0.10.0000.0478.18
5.0.00.0070.0608.21
4.4.90.0130.0237.55
4.4.80.0000.0307.55
4.4.70.0070.0277.55
4.4.60.0070.0337.55
4.4.50.0070.0277.55
4.4.40.0000.0407.55
4.4.30.0000.0337.55
4.4.20.0000.0377.55
4.4.10.0030.0337.55
4.4.00.0030.0277.55
4.3.110.0030.0237.55
4.3.100.0100.0277.55
4.3.90.0070.0237.55
4.3.80.0100.0437.55
4.3.70.0000.0277.55
4.3.60.0030.0377.55
4.3.50.0030.0307.55
4.3.40.0030.0337.55
4.3.30.0000.0177.55
4.3.20.0070.0277.55
4.3.10.0070.0337.55
4.3.00.0000.0377.55

preferences:
48.83 ms | 401 KiB | 5 Q