3v4l.org

run code in 300+ PHP versions simultaneously
<?php trait EvilTrait { /** * @var int */ public $foobarCalls = 0; /** * final AND protected, even if you override it, you shouldn't be allowed to make it private, right? * @return string */ final protected function getSomeString() { return 'This was returned by a protected method called getSomeString'; } /** * Abstracts are useful to ensure certain methods exist, and have a particular signature */ abstract protected function someAbstractMethod(); /** * Be careful with method names like this, if the using class has the same name, it might become * an old-school constructor... Oh, did you know that PHP4-style constructors emit E_DEPRECATED notices? */ public function foobar() { $this->foobarCalls++; } } class Foobar { //using an alias AND changing visibility, hmmm... that may not be a good idea use EvilTrait { getSomeString as public iSeeYou; } /** * Abstract declares this method as protected, so only protected and public * should be allowed, this is private, I'd expect a fatal error here: */ private function someAbstractMethod() { return 'This should not be allowed'; } /** * We've implemented an abstract method in an illegal fashion * Let's check if we can call this contract-breaking implementation: */ public function testAbstractImplementation() { return $this->someAbstractMethod(); } /** * Note: using as <alias> doesn't mean the original method-name is forgotten * It only means that you can call it by a different name, AND that its visibility * depends on the alias... $x->getSomeString() doesn't work */ public function demonstrateAlias() { return $this->getSomeString(); } } $x = new Foobar(); var_dump($x->foobarCalls); echo $x->testAbstractImplementation(), PHP_EOL, $x->iSeeYou(), PHP_EOL, $x->demonstrateAlias();

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.0130.00316.63
8.3.50.0100.00820.99
8.3.40.0110.00418.90
8.3.30.0140.00018.88
8.3.20.0040.00420.09
8.3.10.0050.00321.91
8.3.00.0040.00419.67
8.2.180.0100.01016.75
8.2.170.0040.01118.71
8.2.160.0080.00622.96
8.2.150.0030.00624.18
8.2.140.0030.00924.66
8.2.130.0000.00726.16
8.2.120.0080.00019.76
8.2.110.0100.00022.08
8.2.100.0040.00717.91
8.2.90.0000.00919.41
8.2.80.0060.00317.97
8.2.70.0050.00317.49
8.2.60.0040.00418.04
8.2.50.0030.00618.07
8.2.40.0030.00518.22
8.2.30.0030.00517.97
8.2.20.0000.00717.59
8.2.10.0050.00218.02
8.2.00.0000.00718.12
8.1.280.0080.00825.92
8.1.270.0100.01020.29
8.1.260.0100.00326.35
8.1.250.0040.00428.09
8.1.240.0050.00523.91
8.1.230.0080.00419.02
8.1.220.0050.00317.74
8.1.210.0030.00518.77
8.1.200.0060.00317.36
8.1.190.0030.00517.51
8.1.180.0000.00818.10
8.1.170.0030.00518.54
8.1.160.0030.00622.05
8.1.150.0040.00418.74
8.1.140.0040.00417.52
8.1.130.0030.00317.81
8.1.120.0090.00017.46
8.1.110.0040.00417.45
8.1.100.0040.00417.43
8.1.90.0000.00717.36
8.1.80.0000.00717.36
8.1.70.0030.00317.44
8.1.60.0060.00617.56
8.1.50.0030.00917.56
8.1.40.0040.00417.51
8.1.30.0080.00017.57
8.1.20.0060.00317.62
8.1.10.0070.00017.58
8.1.00.0040.00417.53
8.0.300.0050.00218.77
8.0.290.0000.00717.05
8.0.280.0030.00318.35
8.0.270.0000.00817.18
8.0.260.0030.00517.20
8.0.250.0000.00717.01
8.0.240.0030.00316.98
8.0.230.0070.00016.84
8.0.220.0030.00316.92
8.0.210.0030.00316.89
8.0.200.0060.00316.91
8.0.190.0040.00416.93
8.0.180.0050.00316.95
8.0.170.0040.00416.87
8.0.160.0000.00916.86
8.0.150.0040.00416.87
8.0.140.0050.00316.89
8.0.130.0000.00613.43
8.0.120.0050.00216.76
8.0.110.0040.00416.84
8.0.100.0040.00416.85
8.0.90.0050.00316.77
8.0.80.0060.00916.79
8.0.70.0050.00316.96
8.0.60.0080.00016.92
8.0.50.0000.00716.75
8.0.30.0090.01017.04
8.0.20.0100.01117.40
8.0.10.0000.00816.89
8.0.00.0090.00916.67
7.4.330.0000.00515.03
7.4.320.0030.00316.56
7.4.300.0030.00316.47
7.4.290.0070.00016.49
7.4.280.0040.00316.44
7.4.270.0030.00316.61
7.4.260.0030.00316.61
7.4.250.0000.00716.48
7.4.240.0060.00116.47
7.4.230.0030.00316.44
7.4.220.0000.02116.55
7.4.210.0080.00816.61
7.4.200.0070.00016.51
7.4.160.0070.00716.77
7.4.150.0120.01217.40
7.4.140.0080.01017.86
7.4.130.0130.01116.47
7.4.120.0080.01016.58
7.4.110.0180.00416.72
7.4.100.0190.00616.69
7.4.90.0120.00616.41
7.4.80.0120.01319.39
7.4.70.0070.01016.53
7.4.60.0060.00916.50
7.4.50.0030.00516.34
7.4.40.0080.00816.63
7.4.30.0090.00916.54
7.4.00.0070.01015.25
7.3.330.0000.00613.09
7.3.320.0000.00613.28
7.3.310.0000.00716.21
7.3.300.0070.00016.32
7.3.290.0050.01116.30
7.3.280.0070.00916.27
7.3.270.0140.00317.40
7.3.260.0060.01516.29
7.3.250.0080.01016.26
7.3.240.0110.00616.38
7.3.230.0060.01216.39
7.3.210.0140.00316.31
7.3.200.0080.00819.39
7.3.190.0060.00916.39
7.3.180.0120.00416.36
7.3.170.0040.01216.56
7.3.160.0060.00916.52
7.3.00.0090.00616.49
7.2.330.0120.00616.75
7.2.320.0080.01416.51
7.2.310.0030.01316.41
7.2.300.0120.00616.41
7.2.290.0100.01316.57
7.2.130.0110.00716.94
7.2.120.0090.00616.92
7.2.110.0040.00816.77
7.2.100.0420.01115.63
7.2.90.0520.01115.80
7.2.80.0480.00815.45
7.2.70.0490.00415.73
7.2.60.0260.00615.99
7.2.50.0650.00615.96
7.2.40.0620.00916.56
7.2.30.0730.01016.70
7.2.20.0740.01116.48
7.2.10.0660.00716.56
7.2.00.0580.01017.26
7.1.250.0080.00815.77
7.1.240.0100.00615.48
7.1.230.0150.00415.69
7.1.220.0470.00814.62
7.1.210.0480.00814.50
7.1.200.0290.00815.03
7.1.190.0590.00914.77
7.1.180.0560.01014.44
7.1.170.0560.00914.50
7.1.160.0580.00915.40
7.1.150.0850.00715.35
7.1.140.0590.00915.38
7.1.130.0630.00815.29
7.1.120.0600.00815.45
7.1.110.0590.00515.32
7.1.100.0560.00815.86
7.1.90.0600.00815.19
7.1.80.0670.00615.29
7.1.70.0330.00715.51
7.1.60.0540.01025.15
7.1.50.0480.00828.71
7.1.40.0670.01326.63
7.1.30.0540.01126.72
7.1.20.0650.00726.73
7.1.10.0490.00914.65
7.1.00.0440.02316.67
7.0.330.0030.00915.17
7.0.320.0080.00315.29
7.0.310.0500.00914.46
7.0.300.0480.00814.31
7.0.290.0610.00714.96
7.0.280.0620.00514.25
7.0.270.0680.00915.02
7.0.260.0700.00715.18
7.0.250.0830.00714.88
7.0.240.0940.01014.90
7.0.230.0570.00814.94
7.0.220.0710.00614.88
7.0.210.0500.00514.62
7.0.200.0600.00915.09
7.0.190.0580.00614.67
7.0.180.0640.00514.22
7.0.170.0610.00714.21
7.0.160.0650.00814.47
7.0.150.0530.01014.29
7.0.140.0620.00914.49
7.0.130.0500.00814.41
7.0.120.0580.00914.52
7.0.110.0610.00814.30
7.0.100.0480.01014.34
7.0.90.0530.00714.42
7.0.80.0500.00514.48
7.0.70.0360.00914.39
7.0.60.0440.01615.80
7.0.50.0350.01915.26
7.0.40.0350.02715.49
7.0.30.0430.01815.40
7.0.20.0430.01915.33
7.0.10.0400.02415.25
7.0.00.0520.02315.43
5.6.380.0030.00914.59
5.6.370.0080.00714.39
5.6.360.0080.00413.90
5.6.350.0040.00914.30
5.6.340.0060.00914.21
5.6.330.0130.00614.21
5.6.320.0030.01013.89
5.6.310.0070.01114.02
5.6.300.0110.02416.50
5.6.290.0120.02316.36
5.6.280.0140.03217.68
5.6.270.0140.02616.43
5.6.260.0110.02516.21
5.6.250.0140.03116.42
5.6.240.0130.02616.52
5.6.230.0130.02816.38
5.6.220.0170.02416.34
5.6.210.0170.03517.41
5.6.200.0080.04416.81
5.6.190.0120.03517.47
5.6.180.0180.03617.39
5.6.170.0170.03717.49
5.6.160.0090.02317.34
5.6.150.0120.04117.04
5.6.140.0100.04016.83
5.6.130.0110.04116.87
5.6.120.0140.03317.70
5.6.110.0110.03717.67
5.6.100.0110.03517.58
5.6.90.0130.04317.63
5.6.80.0110.03717.22
5.6.70.0140.02916.22
5.6.60.0170.03016.25
5.6.50.0110.02816.03
5.6.40.0160.02516.15
5.6.30.0120.03016.24
5.6.20.0100.03516.31
5.6.10.0120.02716.06
5.6.00.0100.02816.13
5.5.380.0060.02713.13
5.5.370.0110.02113.17
5.5.360.0130.03013.16
5.5.350.0100.03514.99
5.5.340.0100.03614.51
5.5.330.0110.02615.16
5.5.320.1070.03315.18
5.5.310.0110.03315.08
5.5.300.0110.03914.49
5.5.290.0130.03514.64
5.5.280.0110.03915.41
5.5.270.0120.04015.19
5.5.260.0110.03915.12
5.5.250.0160.03915.15
5.5.240.0100.03515.05
5.5.230.0060.03313.11
5.5.220.0080.03113.19
5.5.210.0080.03013.20
5.5.200.0120.02113.10
5.5.190.0080.02313.11
5.5.180.0100.02313.22
5.5.170.0080.00812.38
5.5.160.0080.02513.03
5.5.150.0150.01813.11
5.5.140.0100.03213.20
5.5.130.0090.02813.05
5.5.120.0100.02113.24
5.5.110.0120.02013.25
5.5.100.0110.02312.95
5.5.90.0120.02113.04
5.5.80.0130.02113.12
5.5.70.0110.02212.99
5.5.60.0080.02612.92
5.5.50.0090.02713.20
5.5.40.0150.02612.92
5.5.30.0110.02812.99
5.5.20.0090.02613.05
5.5.10.0090.02513.04
5.5.00.0090.02913.04
5.4.450.0160.03015.21
5.4.440.0150.03115.08
5.4.430.0110.03315.21
5.4.420.0080.03515.21
5.4.410.0100.03015.02
5.4.400.0120.03315.00
5.4.390.0110.03314.93
5.4.380.0100.03614.76
5.4.370.0090.03514.82
5.4.360.0080.03214.80
5.4.350.0110.03514.83
5.4.340.0120.03214.89
5.4.330.0050.00810.80
5.4.320.0100.03714.74
5.4.310.0100.03014.91
5.4.300.0120.03214.85
5.4.290.0120.03314.88
5.4.280.0110.03314.87
5.4.270.0100.02914.94
5.4.260.0120.03014.91
5.4.250.0110.03214.96
5.4.240.0090.03514.99
5.4.230.0130.03014.97
5.4.220.0110.03314.97
5.4.210.0140.03614.92
5.4.200.0100.03514.35
5.4.190.0120.03214.83
5.4.180.0120.03014.88
5.4.170.0090.03214.84
5.4.160.0100.03014.71
5.4.150.0100.03015.00
5.4.140.0090.03313.72
5.4.130.0070.03213.70
5.4.120.0140.03213.71
5.4.110.0090.03313.54
5.4.100.0140.03313.79
5.4.90.0070.03313.70
5.4.80.0070.03013.69
5.4.70.0080.03513.67
5.4.60.0090.03013.72
5.4.50.0120.02713.69
5.4.40.0120.03313.66
5.4.30.0100.03213.67
5.4.20.0120.02813.76
5.4.10.0120.03113.75
5.4.00.0100.03513.38
5.3.290.0070.03212.51
5.3.280.0070.03512.33
5.3.270.0100.03512.38
5.3.260.0110.02812.36
5.3.250.0110.02812.40
5.3.240.0080.03412.36
5.3.230.0110.03112.35
5.3.220.0120.03012.38
5.3.210.0130.03212.36
5.3.200.0110.03112.26
5.3.190.0110.03012.35
5.3.180.0090.02812.39
5.3.170.0110.03112.43
5.3.160.0110.02712.48
5.3.150.0100.03412.38
5.3.140.0110.03512.34
5.3.130.0080.03012.41
5.3.120.0150.03412.40
5.3.110.0120.03312.32
5.3.100.0100.02912.16
5.3.90.0080.02912.18
5.3.80.0140.03112.14
5.3.70.0080.03212.02
5.3.60.0110.02812.05
5.3.50.0100.02912.02
5.3.40.0110.03612.01
5.3.30.0090.02812.07
5.3.20.0050.03111.87
5.3.10.0090.02711.81
5.3.00.0100.02811.79
5.2.170.0090.02710.42
5.2.160.0090.02710.38
5.2.150.0110.02410.41
5.2.140.0090.02510.37
5.2.130.0090.02610.31
5.2.120.0080.02910.40
5.2.110.0070.02810.39
5.2.100.0070.02610.31
5.2.90.0090.02510.38
5.2.80.0080.02710.35
5.2.70.0100.02410.33
5.2.60.0120.02210.24
5.2.50.0090.02410.38
5.2.40.0080.02210.26
5.2.30.0140.02110.27
5.2.20.0100.02210.22
5.2.10.0070.02510.22
5.2.00.0070.02610.13
5.1.60.0060.0189.75
5.1.50.0070.0209.75
5.1.40.0080.0209.70
5.1.30.0060.0229.88
5.1.20.0060.0239.90
5.1.10.0080.0239.75
5.1.00.0070.0249.72
5.0.50.0040.0178.96
5.0.40.0070.0148.91
5.0.30.0060.0228.87
5.0.20.0070.0158.85
5.0.10.0060.0158.84
5.0.00.0070.0228.84
4.4.90.0050.0128.25
4.4.80.0020.0148.26
4.4.70.0050.0138.27
4.4.60.0030.0158.25
4.4.50.0030.0158.26
4.4.40.0030.0228.27
4.4.30.0050.0138.28
4.4.20.0070.0138.29
4.4.10.0030.0168.28
4.4.00.0040.0208.28
4.3.110.0050.0118.25
4.3.100.0050.0148.25
4.3.90.0040.0128.27
4.3.80.0030.0218.26
4.3.70.0050.0138.25
4.3.60.0070.0128.25
4.3.50.0030.0168.25
4.3.40.0030.0198.24
4.3.30.0030.0147.96
4.3.20.0030.0147.93
4.3.10.0050.0117.91
4.3.00.0050.01610.69

preferences:
59.04 ms | 401 KiB | 5 Q