3v4l.org

run code in 300+ PHP versions simultaneously
<?php class parentobj implements Serializable { private $data; protected $extradata; public function __construct() { $this->data = "My private data"; } public function getData() { return $this->data; } public function getExtraData(){ $this->extradata = array( 'data1','data2' ); } public function serialize() { return serialize(array( $this->data, $this->extradata, )); } public function unserialize($data) { $orgdata = unserialize($data); $this->data = $orgdata[0]; $this->extradata = $orgdata[1]; } } class childobj extends parentobj { public function getExtraData(){ $this->extradata = array( 'datachild1','datachild2' ); } public function serialize() { return serialize(array( $this->data, $this->extradata, )); } public function unserialize($data) { $orgdata = unserialize($data); $this->data = $orgdata[0]; $this->extradata = $orgdata[1]; } } $obj = new childobj(); $s = serialize($obj); echo 'first serialize: '; var_dump($s); $u = unserialize($s); echo 'first unserialize: '; var_dump($u); $u->getExtraData(); echo 'with extradata: '; var_dump($u); $s2 = serialize($u); echo 'second serialize: '; var_dump($s2); $u2 = unserialize($s2); echo 'second unserialize: '; var_dump($u2);

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.0150.00418.68
8.3.50.0090.01122.10
8.3.40.0070.00718.79
8.3.30.0040.01419.22
8.3.20.0030.00520.22
8.3.10.0040.00420.65
8.3.00.0040.00419.38
8.2.180.0120.00318.54
8.2.170.0110.00722.96
8.2.160.0140.00320.44
8.2.150.0040.00424.18
8.2.140.0080.00024.66
8.2.130.0050.00326.16
8.2.120.0040.00422.24
8.2.110.0100.00021.04
8.2.100.0120.00018.03
8.2.90.0090.00917.63
8.2.80.0000.00918.72
8.2.70.0060.00317.63
8.2.60.0030.00518.04
8.2.50.0060.00318.07
8.2.40.0040.00418.16
8.2.30.0040.00419.27
8.2.20.0040.00417.71
8.2.10.0040.00418.02
8.2.00.0000.00917.82
8.1.280.0110.00725.92
8.1.270.0000.00923.83
8.1.260.0020.00526.35
8.1.250.0040.00428.09
8.1.240.0030.00719.28
8.1.230.0040.00717.83
8.1.220.0030.00617.77
8.1.210.0030.00618.77
8.1.200.0030.00617.35
8.1.190.0030.00517.25
8.1.180.0080.00018.10
8.1.170.0040.00418.66
8.1.160.0040.00421.89
8.1.150.0070.00318.87
8.1.140.0040.00417.47
8.1.130.0000.00717.81
8.1.120.0000.00817.46
8.1.110.0030.00517.37
8.1.100.0040.00417.45
8.1.90.0070.00317.39
8.1.80.0060.00317.48
8.1.70.0040.00417.44
8.1.60.0060.00317.62
8.1.50.0060.00317.55
8.1.40.0050.00317.54
8.1.30.0080.00017.53
8.1.20.0080.00017.73
8.1.10.0030.00617.50
8.1.00.0000.00817.50
8.0.300.0040.00418.81
8.0.290.0040.00416.75
8.0.280.0050.00218.59
8.0.270.0070.00017.34
8.0.260.0060.00017.28
8.0.250.0000.00816.95
8.0.240.0070.00017.09
8.0.230.0030.00317.08
8.0.220.0030.00316.92
8.0.210.0000.00816.97
8.0.200.0080.00017.02
8.0.190.0050.00216.91
8.0.180.0070.00016.90
8.0.170.0040.00417.01
8.0.160.0000.00717.07
8.0.150.0040.00416.78
8.0.140.0070.00016.87
8.0.130.0030.00313.51
8.0.120.0050.00216.86
8.0.110.0040.00416.94
8.0.100.0040.00417.04
8.0.90.0000.00716.94
8.0.80.0030.01317.03
8.0.70.0000.00816.86
8.0.60.0000.00716.97
8.0.50.0040.00416.99
8.0.30.0060.01317.18
8.0.20.0150.00717.42
8.0.10.0030.00516.96
8.0.00.0090.00916.82
7.4.330.0000.00515.14
7.4.320.0040.00416.63
7.4.300.0040.00416.52
7.4.290.0070.00016.56
7.4.280.0070.00016.44
7.4.270.0000.00716.66
7.4.260.0030.00316.62
7.4.250.0000.00716.45
7.4.240.0030.00416.53
7.4.230.0040.00416.47
7.4.220.0090.01216.63
7.4.210.0090.00616.64
7.4.200.0080.00016.42
7.4.160.0070.01016.55
7.4.150.0080.01217.40
7.4.140.0100.00717.86
7.4.130.0060.01516.59
7.4.120.0100.00816.58
7.4.110.0120.00616.62
7.4.100.0100.00616.50
7.4.90.0180.00016.55
7.4.80.0130.00618.80
7.4.70.0040.01416.44
7.4.60.0130.01016.53
7.4.50.0040.00416.41
7.4.40.0200.00016.68
7.4.30.0040.01316.50
7.4.00.0070.01015.16
7.3.330.0030.00313.41
7.3.320.0000.00513.29
7.3.310.0080.00016.44
7.3.300.0030.00316.45
7.3.290.0070.00716.40
7.3.280.0090.00916.40
7.3.270.0090.00917.40
7.3.260.0130.00416.42
7.3.250.0090.01216.44
7.3.240.0100.00816.41
7.3.230.0070.01016.39
7.3.210.0070.01016.43
7.3.200.0080.01219.39
7.3.190.0110.00716.44
7.3.180.0140.00316.49
7.3.170.0140.00716.43
7.3.160.0040.01216.52
7.2.330.0060.01116.73
7.2.320.0060.01316.56
7.2.310.0100.00716.79
7.2.300.0080.00816.41
7.2.290.0080.01016.49
7.2.00.0040.00719.61
7.1.100.0080.00318.26
7.1.70.0040.00416.97
7.1.60.0130.01019.32
7.1.50.0030.02016.96
7.1.00.0000.08022.30
7.0.200.0040.00416.57
7.0.140.0030.04721.98
7.0.60.0100.06719.98
7.0.50.0030.05717.93
7.0.40.0070.08320.18
7.0.30.0330.05020.13
7.0.20.0270.07720.08
7.0.10.0130.08020.16
7.0.00.0100.05320.20
5.6.280.0070.07321.08
5.6.210.0030.04720.48
5.6.200.0000.04318.16
5.6.190.0030.04720.50
5.6.180.0330.04320.48
5.6.170.0200.04020.46
5.6.160.0070.06320.34
5.6.150.0000.08718.19
5.6.140.0070.08318.18
5.6.130.0100.04718.23
5.6.120.0170.07320.86
5.6.110.0030.07321.14
5.6.100.0070.07021.12
5.6.90.0170.05721.04
5.6.80.0070.03320.45
5.5.350.0230.07020.47
5.5.340.0030.04317.95
5.5.330.0100.03720.57
5.5.320.0270.04320.34
5.5.310.0270.08020.27
5.5.300.0070.03717.99
5.5.290.0130.07317.95
5.5.280.0000.05320.63
5.5.270.0100.05720.96
5.5.260.0030.04020.97
5.5.250.0070.07020.59
5.5.240.0130.08020.38
5.4.450.0330.07719.48
5.4.440.0370.06719.21
5.4.430.0330.07319.45
5.4.420.0270.06319.48
5.4.410.0400.04019.05
5.4.400.0200.05019.25
5.4.390.0200.04019.23
5.4.380.0300.05719.08
5.4.370.0500.04318.99
5.4.360.0400.04319.22
5.4.350.0270.05318.96
5.4.340.0430.03719.07
5.4.320.0330.06719.06
5.4.310.0370.05719.13
5.4.300.0270.06318.98
5.4.290.0230.04019.06
5.4.280.0300.04019.19
5.4.270.0370.06319.14
5.4.260.0270.07319.06
5.4.250.0330.04318.98
5.4.240.0370.07318.97
5.4.230.0370.06019.19
5.4.220.0330.07019.07
5.4.210.0270.04718.94
5.4.200.0270.06719.14
5.4.190.0300.06019.30
5.4.180.0300.07719.14
5.4.170.0400.06319.15
5.4.160.0330.07018.96
5.4.150.0400.06319.18
5.4.140.0330.07716.34
5.4.130.0300.04016.67
5.4.120.0300.04316.33
5.4.110.0370.06716.26
5.4.100.0300.04716.54
5.4.90.0330.05716.37
5.4.80.0300.06016.50
5.4.70.0370.05016.44
5.4.60.0230.05316.57
5.4.50.0330.07016.17
5.4.40.0400.06316.42
5.4.30.0430.05316.54
5.4.20.0270.04016.42
5.4.10.0300.03716.52
5.4.00.0330.06715.75
5.3.290.0230.04314.71
5.3.280.0370.06714.54
5.3.270.0300.06014.77
5.3.260.0430.06014.86
5.3.250.0400.05714.71
5.3.240.0300.04714.79
5.3.230.0270.04314.70
5.3.220.0370.04314.71
5.3.210.0370.03714.51
5.3.200.0370.04314.51
5.3.190.0230.04314.60
5.3.180.0300.07014.67
5.3.170.0370.06314.59
5.3.160.0270.06014.50
5.3.150.0300.04314.56
5.3.140.0300.06014.58
5.3.130.0270.04014.59
5.3.120.0330.03314.49
5.3.110.0230.04014.55
5.3.100.0470.05314.20
5.3.90.0270.05314.21
5.3.80.0330.05014.10
5.3.70.0370.07014.05
5.3.60.0300.05014.15
5.3.50.0300.07013.91
5.3.40.0300.06014.09
5.3.30.0200.04013.85
5.3.20.0230.03713.84
5.3.10.0230.03313.69
5.3.00.0230.03313.75
5.2.170.0230.03711.26
5.2.160.0230.05711.29
5.2.150.0330.03011.22
5.2.140.0200.03011.39
5.2.130.0200.03011.25
5.2.120.0130.03311.21
5.2.110.0200.02711.05
5.2.100.0230.02311.29
5.2.90.0230.05711.05
5.2.80.0230.02311.13
5.2.70.0170.03011.04
5.2.60.0170.03311.02
5.2.50.0200.04011.05
5.2.40.0130.02711.18
5.2.30.0200.02710.92
5.2.20.0200.03010.95
5.2.10.0130.03010.81
5.2.00.0130.03010.66
5.1.60.0170.02310.08
5.1.50.0100.02710.17
5.1.40.0130.03310.08
5.1.30.0130.04010.29
5.1.20.0130.02710.28
5.1.10.0170.02710.24
5.1.00.0170.02710.08
5.0.50.0070.02010.08
5.0.40.0100.02310.08
5.0.30.0070.03710.08
5.0.20.0100.01710.08
5.0.10.0030.02310.08
5.0.00.0070.03010.08
4.4.90.0070.01310.08
4.4.80.0200.02310.08
4.4.70.0070.01710.08
4.4.60.0100.02710.08
4.4.50.0030.01710.08
4.4.40.0070.02310.08
4.4.30.0070.01710.08
4.4.20.0070.01710.08
4.4.10.0070.01310.08
4.4.00.0030.02710.08
4.3.110.0100.01310.08
4.3.100.0070.01310.08
4.3.90.0100.01310.08
4.3.80.0070.02710.08
4.3.70.0100.02310.08
4.3.60.0070.01310.08
4.3.50.0070.01710.08
4.3.40.0070.02710.08
4.3.30.0030.01710.08
4.3.20.0070.01710.08
4.3.10.0030.01310.08
4.3.00.0030.01710.08

preferences:
47.13 ms | 400 KiB | 5 Q