3v4l.org

run code in 300+ PHP versions simultaneously
<?php /** * Class FyndiqCSVFeedWriter generates CSV export feed */ class FyndiqCSVFeedWriter { /** * @var array export column names */ private $header = array(); /** * @var array products for export */ private $products = array(); /** * @var array fields upon which `addslashes` will be applied */ private $slashFields = array( 'article-name', 'product-brand', 'product-title', 'product-description', ); /** * Apply field transformations * * @param array $product * @return array mixed */ private function processProduct($product) { foreach($this->slashFields as $field) { if (!empty($product[$field])) { $product[$field] = addslashes($product[$field]); } } return $product; } /** * Add product to the feed * * @param $product * @return bool */ public function addProduct($product) { if ($this->isValidProduct($product)) { $this->header = array_unique(array_merge($this->header, array_keys($product))); $this->products[] = $this->processProduct($product); return true; } return false; } /** * Flush the feed data to the stream * * @return bool */ public function write() { // Write header if (fputcsv($this->stream, $this->header) === false) { return false; } // Write data foreach ($this->products as $product) { $finalProduct = array(); foreach ($this->header as $column) { $finalProduct[] = isset($product[$column]) ? $product[$column] : ''; } if (fputcsv($this->stream, $finalProduct) === false) { return false; } } unset($this->header); unset($this->products); return true; } }

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.0090.00616.38
8.3.50.0100.01121.98
8.3.40.0090.00618.84
8.3.30.0070.00718.95
8.3.20.0050.00220.25
8.3.10.0080.00021.90
8.3.00.0050.00319.26
8.2.180.0110.01116.38
8.2.170.0070.00722.96
8.2.160.0030.01020.39
8.2.150.0040.00424.18
8.2.140.0040.00424.66
8.2.130.0040.00426.16
8.2.120.0080.00019.11
8.2.110.0120.00021.06
8.2.100.0090.00320.53
8.2.90.0050.00319.32
8.2.80.0000.00819.21
8.2.70.0040.00417.54
8.2.60.0040.00417.80
8.2.50.0040.00418.10
8.2.40.0040.00419.95
8.2.30.0000.00818.00
8.2.20.0000.00917.66
8.2.10.0040.00417.83
8.2.00.0040.00417.54
8.1.280.0170.00325.92
8.1.270.0000.00820.34
8.1.260.0080.00026.35
8.1.250.0040.00428.09
8.1.240.0030.00621.98
8.1.230.0110.00019.01
8.1.220.0050.00317.74
8.1.210.0040.00418.77
8.1.200.0040.00417.35
8.1.190.0030.00617.11
8.1.180.0090.00018.10
8.1.170.0040.00420.30
8.1.160.0050.00321.88
8.1.150.0040.00418.84
8.1.140.0040.00417.31
8.1.130.0030.00317.78
8.1.120.0000.00717.26
8.1.110.0000.00717.32
8.1.100.0030.00417.40
8.1.90.0000.00717.37
8.1.80.0030.00517.25
8.1.70.0000.00717.25
8.1.60.0090.00317.39
8.1.50.0000.00817.33
8.1.40.0040.00417.40
8.1.30.0040.00417.62
8.1.20.0060.00317.54
8.1.10.0000.00817.29
8.1.00.0030.00517.34
8.0.300.0040.00419.63
8.0.290.0080.00016.58
8.0.280.0050.00318.22
8.0.270.0070.00016.68
8.0.260.0040.00417.15
8.0.250.0030.00316.87
8.0.240.0080.00016.77
8.0.230.0000.00716.88
8.0.220.0040.00416.88
8.0.210.0030.00516.70
8.0.200.0070.00016.82
8.0.190.0040.00416.85
8.0.180.0070.00016.80
8.0.170.0040.00416.71
8.0.160.0000.00716.82
8.0.150.0000.00716.73
8.0.140.0070.00416.73
8.0.130.0000.00713.19
8.0.120.0000.00816.78
8.0.110.0040.00416.82
8.0.100.0030.00516.70
8.0.90.0070.00016.86
8.0.80.0040.01816.80
8.0.70.0080.00016.83
8.0.60.0020.00516.82
8.0.50.0000.00716.78
8.0.30.0120.00917.06
8.0.20.0110.01117.40
8.0.10.0050.00216.88
8.0.00.0080.01016.81
7.4.330.0040.00415.03
7.4.320.0040.00416.39
7.4.300.0030.00316.42
7.4.290.0040.00416.36
7.4.280.0000.00716.45
7.4.270.0030.00316.47
7.4.260.0030.00316.51
7.4.250.0000.00816.43
7.4.240.0020.00516.39
7.4.230.0000.00716.52
7.4.220.0100.00716.40
7.4.210.0050.01116.51
7.4.200.0000.00716.41
7.4.160.0160.00016.30
7.4.150.0060.01217.40
7.4.140.0120.00717.86
7.4.130.0080.01416.43
7.4.120.0110.00616.38
7.4.110.0140.00716.34
7.4.100.0120.00916.45
7.4.90.0140.00316.53
7.4.80.0120.00619.39
7.4.70.0120.00616.46
7.4.60.0070.01016.36
7.4.50.0050.00316.29
7.4.40.0090.00916.21
7.4.30.0070.01116.38
7.4.00.0040.01314.86
7.3.330.0030.00313.08
7.3.320.0120.00413.09
7.3.310.0020.00516.29
7.3.300.0030.00316.22
7.3.290.0000.00716.23
7.3.280.0080.01116.15
7.3.270.0070.01017.40
7.3.260.0200.00516.28
7.3.250.0100.01016.45
7.3.240.0090.00916.43
7.3.230.0100.00716.39
7.3.210.0100.00616.38
7.3.200.0070.01019.39
7.3.190.0110.01116.32
7.3.180.0110.00716.40
7.3.170.0120.00916.27
7.3.160.0040.01216.20
7.3.120.0070.01214.73
7.3.110.0070.01114.85
7.3.100.0060.00814.81
7.3.90.0020.01114.60
7.3.80.0070.00514.65
7.3.70.0030.00714.71
7.3.60.0030.01014.62
7.3.50.0070.00514.72
7.3.40.0000.01414.63
7.3.30.0100.00514.68
7.3.20.0030.00816.30
7.3.10.0060.01016.38
7.3.00.0090.00316.34
7.2.330.0060.01016.39
7.2.320.0030.01616.64
7.2.310.0130.00316.53
7.2.300.0000.01616.37
7.2.290.0060.01316.54
7.2.250.0050.01314.82
7.2.240.0030.01414.79
7.2.230.0050.00814.92
7.2.220.0050.00915.05
7.2.210.0030.01114.99
7.2.200.0020.01014.79
7.2.190.0050.00914.98
7.2.180.0020.01114.82
7.2.170.0070.00414.81
7.2.60.0030.00916.52
7.2.00.0030.01419.37
7.1.330.0060.00815.79
7.1.320.0080.00315.62
7.1.310.0040.01115.64
7.1.300.0070.00615.64
7.1.290.0050.00715.54
7.1.280.0050.00715.60
7.1.270.0030.00715.36
7.1.260.0020.01215.49
7.1.200.0070.00415.65
7.1.100.0070.00717.86
7.1.70.0000.00716.60
7.1.60.0070.01719.50
7.1.50.0240.00016.89
7.1.00.0070.07322.34
7.0.200.0510.00414.64
7.0.140.0030.04322.09
7.0.60.0000.09020.06
7.0.50.0070.03717.91
7.0.40.0030.08320.40
7.0.30.0230.08020.26
7.0.20.0400.07720.30
7.0.10.0130.06020.10
7.0.00.0070.08320.33
5.6.280.0000.07321.03
5.6.210.0030.08020.63
5.6.200.0230.06318.20
5.6.190.0000.09320.48
5.6.180.0130.07320.46
5.6.170.0430.07020.54
5.6.160.0030.05720.54
5.6.150.0070.05318.15
5.6.140.0100.05018.19
5.6.130.0230.07318.24
5.6.120.0100.08021.13
5.6.110.0130.07721.00
5.6.100.0130.07720.86
5.6.90.0100.07721.02
5.6.80.0070.05020.44
5.6.70.0900.05320.51
5.5.350.0030.08720.43
5.5.340.0070.05317.99
5.5.330.0030.08720.27
5.5.320.0300.06720.30
5.5.310.0200.05020.30
5.5.300.0000.04018.07
5.5.290.0030.04018.04
5.5.280.0070.06320.69
5.5.270.0130.07720.80
5.5.260.0130.05720.66
5.5.250.0030.04020.56
5.5.240.0030.08020.20
5.4.450.0500.06019.34
5.4.440.1000.08719.41
5.4.430.0930.05719.46
5.4.420.0800.06319.41
5.4.410.0170.04719.03
5.4.400.0500.07318.88
5.4.390.0370.08018.62
5.4.380.0470.08018.79
5.4.370.0270.08018.73
5.4.360.0730.06318.79
5.4.350.0400.05318.52
5.4.340.0230.06318.53
5.4.320.0470.05718.83
5.4.310.0330.06718.78
5.4.300.0430.05018.75
5.4.290.0330.05318.51
5.4.280.0500.06018.86
5.4.270.0500.07018.47
5.4.260.0470.05318.61
5.4.250.0430.05318.58
5.4.240.0400.05318.51
5.4.230.0370.05018.74
5.4.220.0230.06318.61
5.4.210.0400.05318.72
5.4.200.0330.05016.72
5.4.190.0370.05018.82
5.4.180.0270.05718.73
5.4.170.0300.07718.61
5.4.160.0470.07718.58
5.4.150.0400.08318.72
5.4.140.0300.09016.30
5.4.130.0500.04316.33
5.4.120.0470.05016.27
5.4.110.0470.04716.30
5.4.100.0430.05316.32
5.4.90.0470.05716.30
5.4.80.0570.06016.41
5.4.70.0430.07716.40
5.4.60.0700.05716.40
5.4.50.0570.06316.17
5.4.40.0430.06316.25
5.4.30.0330.04716.24
5.4.20.0470.07016.21
5.4.10.0470.05316.27
5.4.00.0370.05715.74
5.3.290.0500.08714.68
5.3.280.0470.07014.71
5.3.270.0330.08014.78
5.3.260.0600.06314.65
5.3.250.0530.05314.75
5.3.240.0370.05314.60
5.3.230.0300.06714.66
5.3.220.0370.05714.71
5.3.210.0370.05714.63
5.3.200.0430.04314.62
5.3.190.0370.04714.72
5.3.180.0500.04014.76
5.3.170.0270.05314.61
5.3.160.0330.05014.60
5.3.150.0370.05314.78
5.3.140.0400.06014.67
5.3.130.0300.05714.58
5.3.120.0400.05314.72
5.3.110.0470.06714.70
5.3.100.0400.05314.04
5.3.90.0230.05314.13
5.3.80.0300.04714.06
5.3.70.0300.06014.13
5.3.60.0500.05014.13
5.3.50.0300.05013.94
5.3.40.0270.05314.16
5.3.30.0300.05013.93
5.3.20.0370.05013.75
5.3.10.0270.05313.69
5.3.00.0270.05013.70
5.2.170.0270.03711.18
5.2.160.0230.05711.14
5.2.150.0330.05311.36
5.2.140.0400.05311.23
5.2.130.0430.05011.15
5.2.120.0430.04711.34
5.2.110.0330.05011.24
5.2.100.0300.06011.11
5.2.90.0300.05711.24
5.2.80.0270.05011.09
5.2.70.0170.05011.15
5.2.60.0330.03711.18
5.2.50.0200.05011.16
5.2.40.0270.03711.10
5.2.30.0230.04011.04
5.2.20.0230.03711.09
5.2.10.0230.03710.95
5.2.00.0200.04010.78
5.1.60.0270.02710.05
5.1.50.0330.03710.03
5.1.40.0270.03310.06
5.1.30.0170.04010.47
5.1.20.0230.03710.50
5.1.10.0300.04710.12
5.1.00.0200.04310.11
5.0.50.0070.0338.70
5.0.40.0170.0338.42
5.0.30.0170.0408.36
5.0.20.0070.0308.25
5.0.10.0130.0278.27
5.0.00.0170.0378.24
4.4.90.0170.0235.89
4.4.80.0070.0276.00
4.4.70.0070.0235.88
4.4.60.0100.0275.86
4.4.50.0170.0236.04
4.4.40.0070.0405.88
4.4.30.0170.0205.91
4.4.20.0100.0205.97
4.4.10.0070.0235.98
4.4.00.0200.0335.98
4.3.110.0170.0175.82
4.3.100.0270.0275.93
4.3.90.0170.0305.84
4.3.80.0230.0435.82
4.3.70.0130.0335.82
4.3.60.0030.0275.82
4.3.50.0130.0235.80
4.3.40.0130.0405.75
4.3.30.0030.0334.61
4.3.20.0130.0174.57
4.3.10.0000.0274.47
4.3.00.0130.0206.88

preferences:
49.37 ms | 401 KiB | 5 Q