3v4l.org

run code in 300+ PHP versions simultaneously
<?php class Programmer { // Class Properties var $name; // Programmer's name var $experience; // How long has been programming var $lang; // Favorite Language var $education; // Highest degree earned // Class Constructor - function same name as the class function Programmer($name, $experience, $lang, $education) { $this->name=$name; $this->experience=$experience; $this->lang=$lang; $this->education=$education; } // Getter/Setter functions for all properties in the class function get_name() { return $this->name; } function set_name($newname) { $this->name = $newname; } function get_experience() { return $this->experience; } function set_experience($newexperience) { $this->experience = $newexperience; } function get_lang() { return $this->lang; } function set_lang($newlang) { $this->lang = $newlang; } function get_education() { return $this->education; } function set_education($neweducation) { $this->education = $neweducation; } // Utility data dump function function output() { echo "Programmer Name: ".$this->name."<br>"; echo $this->name." has ".$this->experience." years of programming experience.<br>"; echo $this->lang." is ".$this->name."'s favorite programming language.<br>"; echo $this->name." holds the degree: ".$this->education."<br><br>"; } } // Instantiating a programmer $paul = new Programmer('Paul Conrad',12,'C++','Bachelor of Science in Computer Science'); $paul->output(); // Oops, Paul has programmed alot longer than 12 year, really is 22 years $paul->set_experience(22); $paul->output();

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.0170.00316.75
8.3.50.0110.00921.13
8.3.40.0120.00618.57
8.3.30.0130.00318.76
8.3.20.0040.00420.39
8.3.10.0000.00821.84
8.3.00.0070.00021.91
8.2.180.0070.00716.63
8.2.170.0070.00722.96
8.2.160.0110.00320.33
8.2.150.0040.00424.18
8.2.140.0040.00424.66
8.2.130.0040.00420.89
8.2.120.0090.00026.35
8.2.110.0080.00319.33
8.2.100.0120.00017.72
8.2.90.0060.00317.63
8.2.80.0080.00017.97
8.2.70.0040.00417.80
8.2.60.0000.00817.80
8.2.50.0030.00518.10
8.2.40.0050.00220.40
8.2.30.0050.00219.50
8.2.20.0040.00417.66
8.2.10.0040.00418.13
8.2.00.0000.00718.11
8.1.280.0120.00925.92
8.1.270.0040.00422.07
8.1.260.0080.00028.09
8.1.250.0040.00428.09
8.1.240.0060.00322.46
8.1.230.0110.00020.89
8.1.220.0060.00317.74
8.1.210.0030.00518.77
8.1.200.0060.00317.35
8.1.190.0090.00017.22
8.1.180.0030.00518.10
8.1.170.0040.00418.59
8.1.160.0000.00720.71
8.1.150.0030.00518.95
8.1.140.0090.00019.64
8.1.130.0020.00517.65
8.1.120.0070.00317.36
8.1.110.0040.00417.51
8.1.100.0040.00417.37
8.1.90.0070.00017.52
8.1.80.0000.00817.46
8.1.70.0000.00717.49
8.1.60.0000.00717.60
8.1.50.0090.00017.56
8.1.40.0080.00017.50
8.1.30.0000.00817.59
8.1.20.0040.00417.54
8.1.10.0090.00017.64
8.1.00.0080.00017.48
8.0.300.0050.00220.03
8.0.290.0090.00016.75
8.0.280.0030.00318.46
8.0.270.0070.00017.34
8.0.260.0000.00717.28
8.0.250.0080.00017.04
8.0.240.0030.00316.93
8.0.230.0070.00016.86
8.0.220.0040.00416.88
8.0.210.0050.00216.95
8.0.200.0000.00616.89
8.0.190.0000.00716.84
8.0.180.0040.00417.00
8.0.170.0000.00817.00
8.0.160.0030.00516.93
8.0.150.0030.00316.88
8.0.140.0070.00016.87
8.0.130.0030.00313.27
8.0.120.0000.00816.80
8.0.110.0000.00816.91
8.0.100.0000.00716.71
8.0.90.0050.00316.84
8.0.80.0100.01016.86
8.0.70.0040.00416.76
8.0.60.0050.00316.80
8.0.50.0040.00416.91
8.0.30.0100.00816.97
8.0.20.0120.00917.40
8.0.10.0070.00016.93
8.0.00.0080.00916.97
7.4.330.0000.00516.72
7.4.320.0030.00316.48
7.4.300.0030.00316.50
7.4.290.0060.00316.57
7.4.280.0000.00716.46
7.4.270.0070.00016.49
7.4.260.0080.00016.50
7.4.250.0050.00216.48
7.4.240.0070.00016.52
7.4.230.0030.00616.43
7.4.220.0200.00316.66
7.4.210.0090.00916.46
7.4.200.0030.00316.37
7.4.160.0100.00716.57
7.4.150.0120.00617.40
7.4.140.0110.01717.86
7.4.130.0100.00616.58
7.4.120.0110.00916.58
7.4.110.0120.00616.52
7.4.100.0100.01316.63
7.4.90.0100.00716.64
7.4.80.0220.00319.39
7.4.70.0030.01316.46
7.4.60.0100.00616.39
7.4.50.0070.01116.55
7.4.40.0110.00616.26
7.4.30.0120.00616.67
7.4.00.0030.01015.23
7.3.330.0030.00413.20
7.3.320.0070.00013.34
7.3.310.0000.00716.27
7.3.300.0030.00316.33
7.3.290.0030.00316.43
7.3.280.0050.01216.32
7.3.270.0090.00917.40
7.3.260.0120.00616.50
7.3.250.0120.00916.36
7.3.240.0130.00716.58
7.3.230.0030.01316.66
7.3.210.0120.00616.31
7.3.200.0160.01019.39
7.3.190.0030.01316.36
7.3.180.0130.00316.43
7.3.170.0120.00816.59
7.3.160.0030.01316.37
7.3.120.0080.00814.54
7.3.110.0030.00714.82
7.3.100.0110.00314.81
7.3.90.0040.00914.71
7.3.80.0100.00714.81
7.3.70.0070.00714.94
7.3.60.0100.00714.71
7.3.50.0030.01314.70
7.3.40.0070.01014.90
7.3.30.0000.01414.62
7.3.20.0090.00616.73
7.3.10.0030.00916.66
7.3.00.0060.00916.50
7.2.330.0030.01416.65
7.2.320.0120.00616.46
7.2.310.0100.00616.74
7.2.300.0060.01016.47
7.2.290.0080.00816.66
7.2.240.0070.01015.06
7.2.230.0060.00615.14
7.2.220.0060.00915.19
7.2.210.0090.00614.77
7.2.200.0060.00915.05
7.2.190.0060.00915.13
7.2.180.0040.01415.20
7.2.170.0090.00614.90
7.2.160.0060.00915.14
7.2.150.0070.01116.88
7.2.140.0060.00917.08
7.2.130.0080.00716.80
7.2.120.0050.01016.91
7.2.110.0060.00816.78
7.2.100.0060.00816.88
7.2.90.0080.00516.85
7.2.80.0080.00316.97
7.2.70.0080.00916.93
7.2.60.0070.00716.91
7.2.50.0050.01016.79
7.2.40.0110.00617.01
7.2.30.0050.01016.92
7.2.20.0060.00816.88
7.2.10.0080.00316.91
7.2.00.0050.00917.41
7.1.330.0030.01015.68
7.1.320.0130.00015.57
7.1.310.0030.01015.49
7.1.300.0030.00915.63
7.1.290.0060.01015.75
7.1.280.0040.01015.62
7.1.270.0060.00315.68
7.1.260.0150.00015.80
7.1.250.0060.00715.56
7.1.200.0090.00015.75
7.1.100.0000.01717.95
7.1.70.0000.01117.21
7.1.60.0040.00819.40
7.1.50.0000.02016.99
7.1.00.0000.08022.33
7.0.200.0210.00414.84
7.0.60.0170.07721.71
7.0.50.0030.06717.93
7.0.40.0030.05720.29
7.0.30.0200.04720.34
7.0.20.0330.07320.17
7.0.10.0070.09020.01
7.0.00.0030.09320.06
5.6.280.0000.03321.11
5.6.210.0030.08320.51
5.6.200.0030.06718.27
5.6.190.0100.04020.77
5.6.180.0200.06020.77
5.6.170.0230.04720.54
5.6.160.0070.08320.55
5.6.150.0130.04018.18
5.6.140.0030.08018.12
5.6.130.0030.07018.13
5.6.120.0070.04020.98
5.6.110.0130.07720.90
5.6.100.0030.08721.00
5.6.90.0130.06020.95
5.6.80.0070.04320.26
5.5.350.0070.08320.42
5.5.340.0070.07717.96
5.5.330.0100.05320.37
5.5.320.0530.08020.24
5.5.310.0170.04720.30
5.5.300.0070.06317.95
5.5.290.0030.07717.94
5.5.280.0170.05720.84
5.5.270.0100.06720.88
5.5.260.0100.05320.73
5.5.250.0070.08020.67
5.5.240.0100.07320.18

preferences:
55.02 ms | 401 KiB | 5 Q