3v4l.org

run code in 300+ PHP versions simultaneously
<?php class Thesaurus { protected $synonyms = array( array('great', 'wonderful', 'amazing', 'fabulous', 'awesome', 'stunning'), array('look', 'see', 'observe') ); public function lookup($word) { foreach ($this->synonyms as $index => $synonym) { if (in_array(strtolower($word), $synonym)) { unset($synonym[ array_search($word, $synonym) ]); return $synonym[ array_rand($synonym) ]; } } return $word; } } class Transformer { protected $thesaurus; public function __construct(Thesaurus $thesaurus) { $this->thesaurus = $thesaurus; } public function transform($string) { foreach (str_word_count($string, 1) as $word) { $string = $this->replace($word, $this->thesaurus->lookup($word), $string); } return $string; } private function replace($needle, $replacement, $haystack) { return preg_replace( '~' . preg_quote($needle, '~') . '~i', $replacement, $haystack, 1 ); } } $transformer = new Transformer(new Thesaurus); foreach (range(1, 20) as $index) { echo $transformer->transform('This is my great description. It really is wonderful. Look how wonderful it is.'), PHP_EOL; }

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)
7.3.10.0090.00916.89
7.3.00.0100.00916.76
7.2.130.0130.00716.93
7.2.120.0030.01217.14
7.2.110.0070.01316.88
7.2.100.0110.00717.23
7.2.90.0070.01016.85
7.2.80.0140.00716.90
7.2.70.0030.01317.19
7.2.60.0090.00516.82
7.2.50.0100.00616.73
7.2.40.0090.01116.68
7.2.30.0100.01316.93
7.2.20.0040.00717.25
7.2.10.0060.00616.74
7.2.00.0030.01118.31
7.1.250.0080.00815.58
7.1.70.0030.00617.40
7.1.60.0110.00017.66
7.1.50.0030.01717.13
7.1.00.0000.03722.37
7.0.200.0040.01217.13
7.0.140.0000.07722.08
7.0.100.0230.08019.95
7.0.90.0230.09319.96
7.0.80.0130.05319.92
7.0.70.0000.09020.04
7.0.60.0230.07719.96
7.0.50.0130.07020.36
7.0.40.0070.05720.11
7.0.30.0100.04720.07
7.0.20.0200.06020.04
7.0.10.0170.07720.14
7.0.00.0070.05320.09
5.6.280.0000.08020.91
5.6.250.0100.08720.56
5.6.240.0030.08320.74
5.6.230.0030.08320.61
5.6.220.0170.06720.69
5.6.210.0130.08020.48
5.6.200.0000.06720.99
5.6.190.0030.07721.02
5.6.180.0030.05721.19
5.6.170.0030.08020.90
5.6.160.0030.06721.14
5.6.150.0030.09021.11
5.6.140.0070.08721.09
5.6.130.0130.06720.96
5.6.120.0070.08721.15
5.6.110.0200.06721.06
5.6.100.0000.05321.05
5.6.90.0030.08321.00
5.6.80.0070.08320.36
5.6.70.0130.06020.43
5.6.60.0100.08020.43
5.6.50.0100.06720.48
5.6.40.0130.07720.54
5.6.30.0070.08720.42
5.6.20.0100.07720.39
5.6.10.0170.07720.40
5.6.00.0070.06720.37
5.5.380.0130.07320.37
5.5.370.0030.08020.46
5.5.360.0100.07320.49
5.5.350.0130.08020.44
5.5.340.0100.08320.62
5.5.330.0170.07320.77
5.5.320.0100.08720.97
5.5.310.0100.08320.84
5.5.300.0130.07320.92
5.5.290.0030.08320.86
5.5.280.0070.08320.84
5.5.270.0100.08320.84
5.5.260.0100.08320.76
5.5.250.0100.08320.73
5.5.240.0070.05020.32
5.5.230.0070.08320.11
5.5.220.0130.06020.13
5.5.210.0070.08720.24
5.5.200.0170.06720.26
5.5.190.0170.07020.23
5.5.180.0100.08020.30
5.5.160.0070.08020.01
5.5.150.0170.06020.24
5.5.140.0000.05720.19
5.5.130.0070.06320.23
5.5.120.0130.07320.25
5.5.110.0100.07320.25
5.5.100.0200.03320.15
5.5.90.0170.06720.14
5.5.80.0100.07019.96
5.5.70.0070.08720.16
5.5.60.0170.06719.93
5.5.50.0070.05720.17
5.5.40.0100.06020.17
5.5.30.0070.08019.94
5.5.20.0100.07320.16
5.5.10.0030.08020.06
5.5.00.0070.06320.09
5.4.450.0100.08019.28
5.4.440.0130.07319.46
5.4.430.0070.08319.45
5.4.420.0070.07319.45
5.4.410.0130.06319.26
5.4.400.0070.07319.22
5.4.390.0070.05019.05
5.4.380.0100.07319.14
5.4.370.0030.08319.10
5.4.360.0130.06718.91
5.4.350.0100.05319.13
5.4.340.0030.06319.03
5.4.320.0030.08719.18
5.4.310.0100.06319.23
5.4.300.0030.08019.13
5.4.290.0030.08019.09
5.4.280.0000.07719.03
5.4.270.0200.06319.16
5.4.260.0100.07319.03
5.4.250.0100.07019.13
5.4.240.0000.08319.03
5.4.230.0070.06719.04
5.4.220.0000.07018.94
5.4.210.0100.07719.11
5.4.200.0030.07719.13
5.4.190.0170.06318.89
5.4.180.0130.07719.04
5.4.170.0070.07719.24
5.4.160.0130.07319.02
5.4.150.0100.06019.10
5.4.140.0070.06016.51
5.4.130.0100.07016.46
5.4.120.0100.07016.49
5.4.110.0030.05016.48
5.4.100.0070.07016.56
5.4.90.0130.06016.49
5.4.80.0030.03716.39
5.4.70.0000.04016.32
5.4.60.0030.03716.53
5.4.50.0000.04316.49
5.4.40.0030.03716.39
5.4.30.0100.03316.36
5.4.20.0030.03716.36
5.4.10.0030.05016.33
5.4.00.0100.03015.71
5.3.290.0070.08714.61
5.3.280.0070.06014.59
5.3.270.0100.06014.62
5.3.260.0130.06014.57
5.3.250.0100.08014.72
5.3.240.0070.07014.63
5.3.230.0100.07314.63
5.3.220.0070.06314.57
5.3.210.0170.07314.54
5.3.200.0030.07714.64
5.3.190.0070.06314.56
5.3.180.0030.04714.56
5.3.170.0030.04714.56
5.3.160.0000.04314.51
5.3.150.0100.03314.56
5.3.140.0070.03314.50
5.3.130.0000.05014.62
5.3.120.0000.04014.57
5.3.110.0070.06714.65
5.3.100.0070.07314.04
5.3.90.0000.05714.17
5.3.80.0030.05314.05
5.3.70.0030.06313.96
5.3.60.0030.08014.13
5.3.50.0000.04014.03
5.3.40.0100.03714.07
5.3.30.0030.03713.96
5.3.20.0000.04013.72
5.3.10.0030.04013.76
5.3.00.0030.04013.71
5.2.170.0070.02711.23
5.2.160.0030.02711.30
5.2.150.0100.02311.22
5.2.140.0100.04011.02
5.2.130.0130.02011.15
5.2.120.0000.03011.04
5.2.110.0070.04311.11
5.2.100.0070.02711.03
5.2.90.0030.03311.15
5.2.80.0030.03011.19
5.2.70.0100.04311.03
5.2.60.0030.03311.03
5.2.50.0000.03311.05
5.2.40.0000.03711.04
5.2.30.0100.02311.05
5.2.20.0000.03010.89
5.2.10.0000.03311.01
5.2.00.0000.03010.67
5.1.60.0000.05310.09
5.1.50.0030.02710.12
5.1.40.0000.0279.89
5.1.30.0030.02710.43
5.1.20.0070.02710.37
5.1.10.0070.0209.95
5.1.00.0070.02010.16
5.0.50.0000.0238.57
5.0.40.0030.0208.45
5.0.30.0000.0338.35
5.0.20.0030.0208.32
5.0.10.0030.0408.13
5.0.00.0100.0308.13
4.4.90.0000.0208.13
4.4.80.0000.0178.13
4.4.70.0000.0178.13
4.4.60.0030.0138.13
4.4.50.0070.0108.13
4.4.40.0030.0238.13
4.4.30.0000.0178.13
4.4.20.0030.0138.13
4.4.10.0030.0138.13
4.4.00.0000.0278.13
4.3.110.0000.0178.13
4.3.100.0030.0138.13
4.3.90.0030.0138.13
4.3.80.0000.0238.13
4.3.70.0000.0178.13
4.3.60.0000.0138.13
4.3.50.0000.0178.13
4.3.40.0000.0338.13
4.3.30.0030.0378.13
4.3.20.0030.0308.13
4.3.10.0000.0308.13
4.3.00.0030.0338.13

preferences:
33.49 ms | 401 KiB | 5 Q