3v4l.org

run code in 300+ PHP versions simultaneously
<?php class DataMapper { /** * @var array */ private $rawData; /** * @var array */ private $parsedData; /** * @var array */ private $mapping = [ 'dbField1' => 'outputField1', 'dbField2' => ['outputField2' => ['parseFn1', 'parseFn2']] ]; public function __construct(array $data) { $this->rawData = $data; $this->mapData(); } /** * @param $value * @return mixed */ private function parseFn1($value) { return $value * 2; } /** * @param $value * @return string */ private function parseFn2($value) { return $value . "$"; } // 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)) { $this->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); } $this->parsedData[$frontFieldName] = $value; } } } } /** * Simple getter * @return array */ public function getParsedData() { return $this->parsedData; } } // Usually the data comes from the DB so it would be in some kind of Row Set structure $data = ['dbField1' => 5, 'dbField2' => 13]; // The data is handed to the Holder which parses it $dm = new DataMapper($data); // The data is parsed so it can be echo json_encode($dm->getParsedData());

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.70.0080.00816.50
8.3.60.0040.01118.30
8.3.50.0130.00721.21
8.3.40.0070.00718.71
8.3.30.0030.01019.21
8.3.20.0050.00320.34
8.3.10.0040.00420.30
8.3.00.0000.00819.26
8.2.190.0110.00416.63
8.2.180.0070.01116.63
8.2.170.0110.00322.96
8.2.160.0060.01020.47
8.2.150.0050.00324.18
8.2.140.0000.00824.66
8.2.130.0080.00026.16
8.2.120.0080.00022.36
8.2.110.0100.00021.04
8.2.100.0110.00018.03
8.2.90.0000.00917.91
8.2.80.0030.00517.97
8.2.70.0040.00418.03
8.2.60.0050.00318.11
8.2.50.0030.00518.10
8.2.40.0040.00419.34
8.2.30.0000.00719.24
8.2.20.0090.00017.67
8.2.10.0000.00718.04
8.2.00.0000.00817.68
8.1.280.0110.00725.92
8.1.270.0030.00622.04
8.1.260.0070.00026.35
8.1.250.0080.00028.09
8.1.240.0040.00423.91
8.1.230.0040.00822.57
8.1.220.0040.00417.74
8.1.210.0060.00618.77
8.1.200.0080.00317.35
8.1.190.0050.00317.35
8.1.180.0030.00518.10
8.1.170.0030.00618.55
8.1.160.0050.00318.91
8.1.150.0050.00318.90
8.1.140.0070.00017.46
8.1.130.0030.00317.85
8.1.120.0040.00317.50
8.1.110.0070.00017.50
8.1.100.0080.00017.48
8.1.90.0030.00317.52
8.1.80.0000.00717.44
8.1.70.0000.00817.36
8.1.60.0080.00417.48
8.1.50.0040.00417.54
8.1.40.0080.00017.57
8.1.30.0040.00417.61
8.1.20.0000.00817.58
8.1.10.0030.00617.56
8.1.00.0030.00517.38
8.0.300.0040.00419.84
8.0.290.0080.00016.63
8.0.280.0040.00418.52
8.0.270.0030.00317.33
8.0.260.0000.00717.18
8.0.250.0040.00416.97
8.0.240.0000.00716.98
8.0.230.0050.00317.01
8.0.220.0070.00016.95
8.0.210.0030.00316.80
8.0.200.0000.00616.88
8.0.190.0040.00416.92
8.0.180.0040.00416.93
8.0.170.0050.00316.95
8.0.160.0040.00416.90
8.0.150.0030.00616.88
8.0.140.0070.00016.77
8.0.130.0040.00413.29
8.0.120.0030.00616.87
8.0.110.0000.00716.82
8.0.100.0050.00316.80
8.0.90.0040.00416.86
8.0.80.0090.00616.89
8.0.70.0000.00716.83
8.0.60.0000.00816.90
8.0.50.0040.00416.75
8.0.30.0130.01017.14
8.0.20.0140.00417.40
8.0.10.0000.00917.09
8.0.00.0070.01116.72
7.4.330.0000.00615.09
7.4.320.0040.00416.63
7.4.300.0030.00316.59
7.4.290.0000.00716.52
7.4.280.0030.00516.60
7.4.270.0040.00416.66
7.4.260.0040.00416.52
7.4.250.0070.00016.48
7.4.240.0020.00516.44
7.4.230.0000.00716.43
7.4.220.0100.00916.41
7.4.210.0050.01016.47
7.4.200.0070.00016.42
7.4.160.0090.00916.35
7.4.150.0120.00617.40
7.4.140.0080.00817.86
7.4.130.0100.01316.51
7.4.120.0100.01016.45
7.4.110.0090.01516.55
7.4.100.0150.00316.63
7.4.90.0120.00616.46
7.4.80.0100.00719.39
7.4.70.0070.01316.54
7.4.60.0140.00516.44
7.4.50.0080.00016.58
7.4.40.0060.01016.38
7.4.30.0070.01016.59
7.4.00.0090.00615.07
7.3.330.0000.00513.34
7.3.320.0030.00313.20
7.3.310.0080.00016.39
7.3.300.0030.00316.25
7.3.290.0100.00716.33
7.3.280.0100.00816.39
7.3.270.0080.01117.40
7.3.260.0090.00916.54
7.3.250.0160.00216.54
7.3.240.0100.00616.53
7.3.230.0100.00616.55
7.3.210.0120.00616.51
7.3.200.0070.01019.39
7.3.190.0100.01016.44
7.3.180.0120.00316.34
7.3.170.0130.00516.35
7.3.160.0060.00916.34
7.3.120.0070.01114.78
7.3.110.0100.01015.01
7.3.100.0070.00314.71
7.3.90.0000.00914.79
7.3.80.0090.00614.46
7.3.70.0000.01114.55
7.3.60.0100.00314.56
7.3.50.0000.01314.70
7.3.40.0030.00714.54
7.3.30.0120.00314.77
7.3.20.0070.00716.80
7.3.10.0050.00916.81
7.3.00.0050.00916.79
7.2.330.0060.01116.81
7.2.320.0120.00616.74
7.2.310.0100.00716.42
7.2.300.0130.00316.78
7.2.290.0090.00916.82
7.2.250.0070.01015.11
7.2.240.0070.01014.97
7.2.230.0040.01114.75
7.2.220.0040.01115.14
7.2.210.0000.01415.04
7.2.200.0070.01015.22
7.2.190.0070.00315.06
7.2.180.0060.00615.09
7.2.170.0060.00915.13
7.2.130.0090.00616.99
7.2.120.0100.00416.88
7.2.110.0070.00516.94
7.2.100.0050.00516.75
7.2.90.0040.01216.93
7.2.80.0070.00816.74
7.2.70.0090.00716.94
7.2.60.0070.00717.10
7.2.50.0030.01016.99
7.2.40.0030.00816.80
7.2.30.0040.01116.95
7.2.20.0070.00517.10
7.2.10.0040.00917.02
7.2.00.0030.00917.79
7.1.330.0060.00915.62
7.1.320.0070.00415.84
7.1.310.0070.00716.00
7.1.300.0070.00715.91
7.1.290.0030.00815.86
7.1.280.0030.01315.85
7.1.270.0030.00915.88
7.1.260.0090.00615.82
7.1.250.0030.01415.65
7.1.200.0100.00315.83
7.1.100.0030.00618.14
7.1.70.0030.00917.26
7.1.60.0140.01019.32
7.1.50.0120.00917.08
7.1.00.0030.07322.33
7.0.200.0040.00416.56
7.0.140.0000.07321.99
7.0.90.0130.09319.99
7.0.80.0570.07019.90
7.0.70.0130.07320.16
7.0.60.0500.06320.02
7.0.50.0500.08320.37
7.0.40.0070.04020.18
7.0.30.0100.08320.10
7.0.20.0100.06320.18
7.0.10.0030.07320.10
7.0.00.0070.08020.10
5.6.280.0130.06321.00
5.6.240.0100.06020.55
5.6.230.0030.08720.71
5.6.220.0070.05320.68
5.6.210.0070.07020.48
5.6.200.0130.04721.02
5.6.190.0100.03721.02
5.6.180.0130.03721.18
5.6.170.0100.07320.95
5.6.160.0100.04321.14
5.6.150.0130.08321.12
5.6.140.0130.07321.18
5.6.130.0100.07020.95
5.6.120.0070.08321.09
5.6.110.0100.06020.96
5.6.100.0130.07320.93
5.6.90.0070.06320.94
5.6.80.0170.06020.47
5.6.70.0030.04720.45
5.6.60.0100.07720.46
5.6.50.0030.04320.42
5.6.40.0070.05020.32
5.6.30.0030.07020.43
5.6.20.0100.04320.55
5.6.10.0030.04720.38
5.6.00.0130.07020.45
5.5.380.0130.06720.44
5.5.370.0030.08720.55
5.5.360.0030.05720.45
5.5.350.0100.07020.34
5.5.340.0100.07720.91
5.5.330.0070.04320.79
5.5.320.0030.04720.82
5.5.310.0070.05320.79
5.5.300.0070.07720.79
5.5.290.0030.04720.79
5.5.280.0070.05320.65
5.5.270.0070.05720.74
5.5.260.0130.04320.73
5.5.250.0100.09320.59
5.5.240.0130.05020.02
5.5.230.0070.07320.19
5.5.220.0030.08720.19
5.5.210.0070.04320.16
5.5.200.0070.04020.11
5.5.190.0030.08020.14
5.5.180.0130.04020.20
5.5.160.0070.04320.29
5.5.150.0030.06320.19
5.5.140.0130.07020.28
5.5.130.0100.06720.20
5.5.120.0070.05320.20
5.5.110.0130.05320.22
5.5.100.0200.05320.09
5.5.90.0100.08020.10
5.5.80.0100.04320.05
5.5.70.0100.04720.17
5.5.60.0100.06720.17
5.5.50.0030.05020.11
5.5.40.0030.04320.21
5.5.30.0130.06720.09
5.5.20.0070.08320.09
5.5.10.0030.07020.05
5.5.00.0100.07020.08
5.4.450.0070.04319.23
5.4.440.0100.07719.48
5.4.430.0000.06019.22
5.4.420.0130.06019.52
5.4.410.0070.05719.35
5.4.400.0000.04318.95
5.4.390.0130.05019.21
5.4.380.0100.07719.04
5.4.370.0100.04019.14
5.4.360.0130.07019.23
5.4.350.0000.06019.21
5.4.340.0070.05319.03
5.4.320.0130.06019.09
5.4.310.0100.05719.18
5.4.300.0100.04019.13
5.4.290.0070.06719.10
5.4.280.0070.07719.14
5.4.270.0130.04019.14
5.4.260.0030.05319.20
5.4.250.0070.07019.22
5.4.240.0130.06019.05
5.4.230.0130.04719.03
5.4.220.0030.04019.08
5.4.210.0100.05718.89
5.4.200.0030.05019.16
5.4.190.0070.07718.89
5.4.180.0070.08019.08
5.4.170.0070.08019.15
5.4.160.0070.04018.86
5.4.150.0030.05019.19
5.4.140.0000.06716.21
5.4.130.0030.03716.36
5.4.120.0100.03716.38
5.4.110.0030.04316.45
5.4.100.0100.06316.52
5.4.90.0100.03716.47
5.4.80.0030.06316.37
5.4.70.0030.05016.45
5.4.60.0030.07716.45
5.4.50.0000.03716.42
5.4.40.0030.05016.54
5.4.30.0070.06316.36
5.4.20.0070.04716.40
5.4.10.0000.06016.23
5.4.00.0100.05315.81
5.3.290.0070.07314.78
5.3.280.0170.03314.65
5.3.270.0030.08014.66
5.3.260.0100.06714.59
5.3.250.0100.07714.71
5.3.240.0000.05714.57
5.3.230.0000.08014.53
5.3.220.0100.05314.70
5.3.210.0070.06014.51
5.3.200.0070.07014.53
5.3.190.0030.06314.48
5.3.180.0070.04014.49
5.3.170.0170.06714.49
5.3.160.0070.04314.65
5.3.150.0100.07014.56
5.3.140.0070.07714.66
5.3.130.0030.07714.63
5.3.120.0030.08014.51
5.3.110.0070.08014.52
5.3.100.0100.06714.14
5.3.90.0100.07014.05
5.3.80.0030.07314.06
5.3.70.0030.04314.07
5.3.60.0070.03713.91
5.3.50.0030.08014.00
5.3.40.0030.07713.87
5.3.30.0030.06013.96
5.3.20.0100.07013.66
5.3.10.0070.03313.58
5.3.00.0030.05013.64
5.2.170.0030.03711.25
5.2.160.0100.02711.13
5.2.150.0070.06311.23
5.2.140.0100.03711.13
5.2.130.0100.03311.16
5.2.120.0000.06710.98
5.2.110.0000.04311.11
5.2.100.0000.03311.20
5.2.90.0000.03011.21
5.2.80.0000.03711.11
5.2.70.0000.05011.22
5.2.60.0030.04311.07
5.2.50.0070.06010.93
5.2.40.0070.06010.91
5.2.30.0170.04710.86
5.2.20.0030.05010.91
5.2.10.0070.05710.91
5.2.00.0000.05710.74
5.1.60.0000.03010.03
5.1.50.0070.05010.00
5.1.40.0030.03710.05
5.1.30.0070.04310.39
5.1.20.0030.02710.41
5.1.10.0130.04310.10
5.1.00.0000.0339.91
5.0.50.0030.0508.39
5.0.40.0070.0338.42
5.0.30.0030.0608.05
5.0.20.0100.0378.18
5.0.10.0030.0378.25
5.0.00.0070.0378.14
4.4.90.0070.0337.08
4.4.80.0000.0207.08
4.4.70.0000.0207.08
4.4.60.0000.0177.08
4.4.50.0000.0307.08
4.4.40.0030.0537.08
4.4.30.0000.0337.08
4.4.20.0000.0377.08
4.4.10.0000.0407.08
4.4.00.0030.0507.08
4.3.110.0070.0307.08
4.3.100.0070.0337.08
4.3.90.0030.0277.08
4.3.80.0070.0237.08
4.3.70.0030.0337.08
4.3.60.0000.0377.08
4.3.50.0000.0307.08
4.3.40.0030.0277.08
4.3.30.0070.0307.08
4.3.20.0030.0437.08
4.3.10.0030.0337.08
4.3.00.0030.0237.08

preferences:
73.21 ms | 401 KiB | 5 Q