3v4l.org

run code in 300+ PHP versions simultaneously
<?php class DataHolder { private $rawData; private $parsedData; private $mapping = [ 'dbField1' => 'outputField1', 'dbField2' => ['outputField2' => ['parseFn1', 'parseFn2']] ]; private function parseFn1($value) { return $value * 2; } private function parseFn2($value) { return $value . "$"; } public function __construct(array $data) { $this->rawData = $data; $this->mapData(); } // Yes, I know the methods shouldn't be here but it rather be decoupled in another class and // injected with a DI it but I wrote it like this with example purposes only private function mapData() { foreach($this->mapping as $dbFieldName => $content) { if(isset($this->rawData[$dbFieldName])) { if(is_string($content)) { $parsedData[$content] = $this->rawData[$dbFieldName]; } else if (is_array($content)) { $frontFieldName = key($content); $functionsArray = reset($content); $value = $this->rawData[$dbFieldName]; foreach($functionsArray as $functionName) { $value = $this->{$functionName}($value); } $parsedData[$frontFieldName] = $value; } } } } public function getParseData() { return $this->parsedData; } } $data = ['dbField1' => 5, 'dbField2' => 13]; $dh = new DataHolder($data); var_dump($dh->getParseData());

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.0070.00718.43
8.3.50.0120.00822.09
8.3.40.0140.00018.92
8.3.30.0070.00719.04
8.3.20.0040.00420.34
8.3.10.0050.00320.61
8.3.00.0080.00019.23
8.2.180.0040.01116.63
8.2.170.0070.00722.96
8.2.160.0110.00320.38
8.2.150.0080.00024.18
8.2.140.0000.00824.66
8.2.130.0000.00826.16
8.2.120.0000.01519.35
8.2.110.0070.00320.46
8.2.100.0120.00018.09
8.2.90.0040.00419.21
8.2.80.0080.00017.97
8.2.70.0000.00817.61
8.2.60.0040.00418.03
8.2.50.0000.00918.07
8.2.40.0040.00418.16
8.2.30.0040.00418.08
8.2.20.0000.00717.82
8.2.10.0040.00418.00
8.2.00.0040.00417.75
8.1.280.0030.01025.92
8.1.270.0030.00523.96
8.1.260.0040.00426.35
8.1.250.0000.00728.09
8.1.240.0040.00419.00
8.1.230.0090.00319.17
8.1.220.0040.00417.74
8.1.210.0000.00818.77
8.1.200.0050.00517.25
8.1.190.0080.00017.23
8.1.180.0060.00318.10
8.1.170.0040.00418.64
8.1.160.0040.00421.93
8.1.150.0070.00018.84
8.1.140.0000.00717.46
8.1.130.0040.00417.82
8.1.120.0040.00417.37
8.1.110.0040.00417.36
8.1.100.0000.00717.51
8.1.90.0030.00317.53
8.1.80.0040.00417.37
8.1.70.0030.00317.43
8.1.60.0060.00317.66
8.1.50.0040.00417.52
8.1.40.0040.00417.53
8.1.30.0030.00517.66
8.1.20.0000.00717.59
8.1.10.0030.00617.60
8.1.00.0060.00317.48
8.0.300.0060.00318.77
8.0.290.0040.00416.63
8.0.280.0040.00418.43
8.0.270.0070.00017.27
8.0.260.0070.00017.27
8.0.250.0050.00316.86
8.0.240.0040.00417.00
8.0.230.0040.00416.98
8.0.220.0000.00716.90
8.0.210.0050.00216.86
8.0.200.0000.00716.96
8.0.190.0060.00316.87
8.0.180.0040.00416.94
8.0.170.0030.00616.93
8.0.160.0070.00016.84
8.0.150.0040.00416.89
8.0.140.0040.00416.87
8.0.130.0030.00313.32
8.0.120.0030.00516.87
8.0.110.0000.00816.95
8.0.100.0070.00016.88
8.0.90.0000.00716.76
8.0.80.0090.00616.79
8.0.70.0040.00416.73
8.0.60.0040.00416.86
8.0.50.0070.00016.89
8.0.30.0180.00717.24
8.0.20.0120.00917.40
8.0.10.0030.00516.82
8.0.00.0090.01016.83
7.4.330.0060.00015.09
7.4.320.0060.00016.53
7.4.300.0030.00316.64
7.4.290.0030.00316.51
7.4.280.0020.00516.59
7.4.270.0040.00416.59
7.4.260.0000.00716.50
7.4.250.0000.00716.48
7.4.240.0030.00416.50
7.4.230.0000.00716.41
7.4.220.0040.01416.71
7.4.210.0040.01116.55
7.4.200.0000.00716.71
7.4.160.0030.01316.46
7.4.150.0100.00617.40
7.4.140.0110.00617.86
7.4.130.0060.01016.53
7.4.120.0080.00816.49
7.4.110.0070.01616.65
7.4.100.0070.01116.57
7.4.90.0030.02016.69
7.4.80.0080.00819.39
7.4.70.0140.00516.55
7.4.60.0100.00616.39
7.4.50.0000.00716.52
7.4.40.0130.00316.46
7.4.30.0080.01416.27
7.4.00.0140.00015.02
7.3.330.0000.00513.45
7.3.320.0000.00513.16
7.3.310.0020.00516.18
7.3.300.0000.00716.44
7.3.290.0030.01016.33
7.3.280.0130.00616.39
7.3.270.0030.01417.40
7.3.260.0210.00316.72
7.3.250.0060.01016.53
7.3.240.0000.01716.48
7.3.230.0030.01316.56
7.3.210.0080.01216.63
7.3.200.0090.00919.39
7.3.190.0080.01116.66
7.3.180.0040.01116.54
7.3.170.0130.00316.63
7.3.160.0190.00016.70
7.2.330.0070.01016.76
7.2.320.0030.01416.84
7.2.310.0090.00916.79
7.2.300.0030.01316.80
7.2.290.0110.00816.61
7.2.60.0030.01016.84
7.2.00.0060.00619.36
7.1.200.0070.00315.64
7.1.100.0070.01117.97
7.1.70.0070.00317.30
7.1.60.0070.01719.32
7.1.50.0070.01316.98
7.1.00.0030.08722.45
7.0.200.0000.00816.70
7.0.140.0030.07321.92
7.0.60.0070.07019.94
7.0.50.0100.07717.86
7.0.40.0130.07320.24
7.0.30.0430.04020.24
7.0.20.0230.04720.15
7.0.10.0230.08320.09
7.0.00.0030.07020.16
5.6.280.0070.07020.88
5.6.210.0070.08320.68
5.6.200.0070.08318.25
5.6.190.0100.08320.39
5.6.180.3770.04320.63
5.6.170.0370.07320.52
5.6.160.0030.04720.49
5.6.150.0100.07718.17
5.6.140.0070.04318.15
5.6.130.0030.04018.15
5.6.120.0030.08721.16
5.6.110.0130.06321.01
5.6.100.0000.04720.98
5.6.90.0030.07020.98
5.6.80.0030.04020.52
5.6.70.4370.04020.45
5.5.350.0330.06020.50
5.5.340.0030.07317.94
5.5.330.0030.04320.21
5.5.320.0130.04320.27
5.5.310.0170.06320.35
5.5.300.0100.03717.98
5.5.290.0100.03317.95
5.5.280.0130.03320.91
5.5.270.0100.06320.77
5.5.260.0130.08020.88
5.5.250.0030.07020.48
5.5.240.0070.07320.21
5.4.450.0600.03719.52
5.4.440.0630.04719.54
5.4.430.0570.05719.28
5.4.420.0770.00019.36
5.4.410.0670.00019.28
5.4.400.0630.00019.33
5.4.390.0630.00019.12
5.4.380.0630.00019.07
5.4.370.0600.00019.25
5.4.360.0630.00019.08
5.4.350.0630.00019.05
5.4.340.0630.00019.03
5.4.320.0080.04012.51
5.4.310.0030.04412.51
5.4.300.0070.04012.51
5.4.290.0040.03912.51
5.4.280.0060.03412.41
5.4.270.0040.03612.41
5.4.260.0090.03412.41
5.4.250.0040.03812.41
5.4.240.0060.03512.40
5.4.230.0040.04312.40
5.4.220.0080.03412.40
5.4.210.0070.03412.40
5.4.200.0070.03612.40
5.4.190.0040.03812.39
5.4.180.0080.03312.39
5.4.170.0040.03712.41
5.4.160.0060.04412.41
5.4.150.0070.04012.39
5.4.140.0080.03912.08
5.4.130.0060.03512.07
5.4.120.0040.03712.03
5.4.110.0070.03612.02
5.4.100.0090.03512.02
5.4.90.0040.03812.03
5.4.80.0100.03712.02
5.4.70.0050.03412.02
5.4.60.0060.03312.02
5.4.50.0050.03512.02
5.4.40.0090.03012.01
5.4.30.0030.03712.00
5.4.20.0040.03612.00
5.4.10.0070.03212.00
5.4.00.0050.03511.49
5.3.290.0100.03412.80
5.3.280.0050.03812.71
5.3.270.0060.03812.72
5.3.260.0110.03312.72
5.3.250.0080.03312.72
5.3.240.0050.03712.72
5.3.230.0050.03812.71
5.3.220.0090.03812.68
5.3.210.0100.03512.68
5.3.200.0080.03812.68
5.3.190.0080.03412.68
5.3.180.0070.03712.68
5.3.170.0060.03612.67
5.3.160.0070.03612.67
5.3.150.0090.03612.68
5.3.140.0080.03512.66
5.3.130.0050.04012.66
5.3.120.0060.03912.66
5.3.110.0050.03912.66
5.3.100.0040.03812.12
5.3.90.0070.03512.10
5.3.80.0060.03812.09
5.3.70.0050.03712.09
5.3.60.0060.03412.07
5.3.50.0060.03512.02
5.3.40.0070.03412.02
5.3.30.0040.03511.98
5.3.20.0090.03211.76
5.3.10.0090.03211.73
5.3.00.0110.03111.71
5.2.170.0040.0319.22
5.2.160.0040.0299.21
5.2.150.0050.0309.21
5.2.140.0070.0279.21
5.2.130.0050.0289.17
5.2.120.0050.0289.18
5.2.110.0030.0299.18
5.2.100.0050.0349.18
5.2.90.0110.0269.17
5.2.80.0050.0299.17
5.2.70.0070.0279.17
5.2.60.0040.0339.13
5.2.50.0070.0359.10
5.2.40.0080.0279.08
5.2.30.0060.0309.04
5.2.20.0080.0309.03
5.2.10.0060.0328.94
5.2.00.0060.0308.80
5.1.60.0060.0218.09
5.1.50.0050.0248.08
5.1.40.0050.0238.07
5.1.30.0060.0248.41
5.1.20.0030.0278.44
5.1.10.0060.0238.16
5.1.00.0060.0238.16
5.0.50.0030.0206.63
5.0.40.0040.0186.50
5.0.30.0070.0326.31
5.0.20.0030.0206.27
5.0.10.0020.0206.26
5.0.00.0050.0296.25
4.4.90.0040.0134.77
4.4.80.0030.0144.76
4.4.70.0050.0134.76
4.4.60.0030.0154.75
4.4.50.0040.0144.77
4.4.40.0020.0264.71
4.4.30.0060.0124.76
4.4.20.0040.0144.84
4.4.10.0020.0164.85
4.4.00.0030.0244.75
4.3.110.0040.0144.67
4.3.100.0030.0154.66
4.3.90.0030.0144.63
4.3.80.0020.0244.58
4.3.70.0030.0134.63
4.3.60.0030.0134.62
4.3.50.0020.0154.63
4.3.40.0050.0214.54
4.3.30.0020.0163.30
4.3.20.0030.0143.28
4.3.10.0010.0163.23
4.3.00.0070.02016.50

preferences:
38.64 ms | 401 KiB | 5 Q