3v4l.org

run code in 300+ PHP versions simultaneously
<?php class Person { protected $name; public function __construct($name) { $this->name = $name; } public function getName() { return $this->name; } } class Business { // adding Staff class to Business public function __construct(Staff $staff) { $this->staff = $staff; } // manual hire(adding Person to Staff) public function hire(Person $person) { // add to staff $this->staff->add($person); } // fetch members public function getStaffMembers() { return $this->staff->members(); } } class Staff { // adding people from Person class to "member" variable protected $members = []; public function __construct($members = []) { $this->members = $members; } // adding person to members public function add(Person $person) { $this->members[] = $person; } public function members() { return $this->members; } } // you can also create an array with this method $bros = [ 'Bro', 'Zdenko', 'Miljan', 'Kesten' ]; // pretty simple to understand this part $employees = new Person([$bros]); $staff = new Staff([$employees]); $business = new Business($staff); //var_dump($business->getStaffMembers()); // or the print_r, it doesn't matter //print_r($business->getStaffMembers()); /* You have an array of members now, if you'd like to utilize this array * you could iterate over it and echo each member, within a foreach loop * */ $membersArray = $business->getStaffMembers(); foreach($membersArray as $obj){ print_r($obj); }

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.0140.00016.88
8.3.50.0080.00816.49
8.3.40.0110.00418.88
8.3.30.0090.00618.96
8.3.20.0040.00418.77
8.3.10.0050.00320.01
8.3.00.0080.00017.93
8.2.180.0070.01018.38
8.2.170.0130.00722.96
8.2.160.0110.00419.31
8.2.150.0040.00424.18
8.2.140.0080.00624.66
8.2.130.0000.00821.13
8.2.120.0040.00426.35
8.2.110.0070.00321.25
8.2.100.0070.00417.93
8.2.90.0060.00319.18
8.2.80.0030.00617.97
8.2.70.0000.00817.75
8.2.60.0080.00017.93
8.2.50.0090.00018.10
8.2.40.0040.00420.42
8.2.30.0050.00319.16
8.2.20.0000.00717.74
8.2.10.0050.00218.14
8.2.00.0060.00318.07
8.1.280.0110.00425.92
8.1.270.0030.00623.83
8.1.260.0060.00328.09
8.1.250.0070.00028.09
8.1.240.0000.00923.99
8.1.230.0040.00719.10
8.1.220.0000.00817.74
8.1.210.0060.00318.77
8.1.200.0060.00317.48
8.1.190.0080.00017.35
8.1.180.0090.00018.10
8.1.170.0080.00018.81
8.1.160.0040.00419.08
8.1.150.0000.00718.83
8.1.140.0040.00419.48
8.1.130.0040.00417.73
8.1.120.0030.00517.50
8.1.110.0040.00417.45
8.1.100.0000.00717.45
8.1.90.0040.00417.54
8.1.80.0070.00017.51
8.1.70.0040.00417.44
8.1.60.0000.00717.59
8.1.50.0040.00417.59
8.1.40.0030.00617.55
8.1.30.0050.00317.75
8.1.20.0020.00517.57
8.1.10.0050.00517.50
8.1.00.0020.00517.49
8.0.300.0050.00218.77
8.0.290.0000.00816.75
8.0.280.0040.00418.44
8.0.270.0090.00017.34
8.0.260.0000.00617.34
8.0.250.0070.00016.99
8.0.240.0000.01017.04
8.0.230.0040.00417.07
8.0.220.0000.00816.89
8.0.210.0050.00216.96
8.0.200.0000.00716.99
8.0.190.0040.00717.05
8.0.180.0070.00017.01
8.0.170.0000.00717.00
8.0.160.0040.00416.95
8.0.150.0070.00016.95
8.0.140.0080.00016.86
8.0.130.0000.00613.37
8.0.120.0040.00416.98
8.0.110.0040.00416.88
8.0.100.0040.00417.01
8.0.90.0070.00016.86
8.0.80.0140.00716.95
8.0.70.0070.00016.93
8.0.60.0000.00716.84
8.0.50.0040.00416.94
8.0.30.0120.00617.26
8.0.20.0090.01017.40
8.0.10.0000.00817.17
8.0.00.0100.01016.75
7.4.330.0050.00015.08
7.4.320.0030.00316.55
7.4.300.0060.00016.63
7.4.290.0000.00716.64
7.4.280.0040.00416.62
7.4.270.0030.00316.41
7.4.260.0050.00316.52
7.4.250.0050.00216.52
7.4.240.0000.00716.55
7.4.230.0030.00316.59
7.4.220.0070.01116.60
7.4.210.0060.00916.72
7.4.200.0080.00016.66
7.4.160.0120.00316.50
7.4.150.0070.01017.40
7.4.140.0070.01417.86
7.4.130.0100.00716.58
7.4.120.0110.00616.58
7.4.110.0070.01016.52
7.4.100.0140.01016.60
7.4.90.0100.01616.64
7.4.80.0200.00019.39
7.4.70.0080.00816.46
7.4.60.0130.00916.38
7.4.50.0090.00616.57
7.4.40.0060.01216.58
7.4.30.0030.01416.52
7.4.10.0060.01314.64
7.4.00.0070.01014.77
7.3.330.0000.00613.12
7.3.320.0000.00513.28
7.3.310.0000.00716.33
7.3.300.0030.00616.16
7.3.290.0100.00616.27
7.3.280.0080.00916.27
7.3.270.0170.00017.40
7.3.260.0150.00916.27
7.3.250.0100.01016.47
7.3.240.0090.01116.54
7.3.230.0060.01116.45
7.3.210.0160.00616.48
7.3.200.0060.01316.41
7.3.190.0100.00716.66
7.3.180.0080.00916.30
7.3.170.0120.01216.66
7.3.160.0120.00516.37
7.3.130.0090.00714.75
7.3.120.0030.01414.85
7.3.110.0060.01214.75
7.3.100.0090.00514.68
7.3.90.0040.01214.59
7.3.80.0050.00714.86
7.3.70.0070.00714.74
7.3.60.0020.00914.76
7.3.50.0070.00314.72
7.3.40.0000.01114.67
7.3.30.0070.00414.73
7.3.20.0050.01016.65
7.3.10.0070.00616.63
7.3.00.0080.00316.70
7.2.330.0140.00416.78
7.2.320.0140.00816.78
7.2.310.0080.00916.71
7.2.300.0070.01316.44
7.2.290.0030.01316.80
7.2.260.0070.01015.05
7.2.250.0060.00914.75
7.2.240.0050.01015.20
7.2.230.0080.00715.05
7.2.220.0080.00614.94
7.2.210.0050.00715.25
7.2.200.0060.00615.07
7.2.190.0080.00614.98
7.2.180.0020.00914.88
7.2.170.0050.00815.04
7.2.160.0080.00515.06
7.2.150.0110.00316.79
7.2.140.0050.01116.88
7.2.130.0060.00816.95
7.2.120.0090.00516.86
7.2.110.0030.01116.88
7.2.100.0070.00716.82
7.2.90.0070.00616.87
7.2.80.0050.01016.98
7.2.70.0050.00917.10
7.2.60.0060.00816.87
7.2.50.0050.00917.04
7.2.40.0050.00816.92
7.2.30.0080.00517.02
7.2.20.0050.00916.99
7.2.10.0070.00617.05
7.2.00.0050.00817.61
7.1.330.0050.00915.76
7.1.320.0040.00915.69
7.1.310.0050.00915.77
7.1.300.0110.00515.80
7.1.290.0090.00515.60
7.1.280.0030.00715.61
7.1.270.0070.00415.81
7.1.260.0040.00815.65
7.1.250.0050.00715.85
7.1.240.0000.01315.57
7.1.230.0030.00915.86
7.1.220.0030.00915.40
7.1.210.0000.01415.80
7.1.200.0040.00715.72
7.1.190.0030.01015.44
7.1.180.0060.00315.77
7.1.170.0080.00815.52
7.1.160.0000.01315.95
7.1.150.0070.00715.68
7.1.140.0060.00915.60
7.1.130.0090.00315.77
7.1.120.0080.00815.92
7.1.110.0060.00615.94
7.1.100.0050.01016.94
7.1.90.0030.00715.76
7.1.80.0060.00915.88
7.1.70.0050.00516.42
7.1.60.0050.01617.44
7.1.50.0040.00815.59
7.1.40.0070.00715.86
7.1.30.0060.00615.89
7.1.20.0070.00715.61
7.1.10.0040.00815.51
7.1.00.0050.04019.07
7.0.330.0030.01015.44
7.0.320.0040.01115.41
7.0.310.0070.00715.41
7.0.300.0080.00415.64
7.0.290.0030.00915.41
7.0.280.0090.00615.12
7.0.270.0070.00415.18
7.0.260.0090.00315.43
7.0.250.0030.00615.48
7.0.240.0030.00715.59
7.0.230.0030.00615.54
7.0.220.0040.00815.14
7.0.210.0000.01315.14
7.0.200.0040.00515.96
7.0.190.0050.00815.46
7.0.180.0070.00715.41
7.0.170.0030.00615.57
7.0.160.0040.00415.46
7.0.150.0070.00715.43
7.0.140.0070.00715.59
7.0.130.0030.01015.22
7.0.120.0070.00715.43
7.0.110.0090.00315.41
7.0.100.0060.00315.51
7.0.90.0060.00815.57
7.0.80.0000.01215.25
7.0.70.0070.00715.52
7.0.60.0120.03017.71
7.0.50.0130.02717.91
7.0.40.0180.02516.93
7.0.30.0200.03016.91
7.0.20.0190.02717.03
7.0.10.0170.03916.77
7.0.00.0100.03516.75
5.6.400.0070.00714.35
5.6.390.0060.00914.31
5.6.380.0090.00614.61
5.6.370.0060.00614.32
5.6.360.0030.01014.45
5.6.350.0040.01014.61
5.6.340.0030.00914.42
5.6.330.0100.00314.74
5.6.320.0070.00314.41
5.6.310.0070.00414.39
5.6.300.0030.00614.42
5.6.290.0070.00714.30
5.6.280.0040.04117.60
5.6.270.0030.01014.39
5.6.260.0000.01514.26
5.6.250.0030.00614.25
5.6.240.0040.00814.59
5.6.230.0090.00614.52
5.6.220.0040.00414.22
5.6.210.0030.02717.57
5.6.200.0120.03317.78
5.6.190.0160.02817.72
5.6.180.0120.03517.63
5.6.170.0130.03217.78
5.6.160.0140.03017.89
5.6.150.0160.02917.65
5.6.140.0150.03017.83
5.6.130.0100.03517.69
5.6.120.0080.03517.78
5.6.110.0080.03617.80
5.6.100.0280.02817.75
5.6.90.0230.03517.73
5.6.80.0170.03517.39
5.6.70.0110.03817.42
5.6.60.0220.04017.43
5.6.50.0170.03617.30
5.6.40.0170.03517.58
5.6.30.0230.02817.22
5.6.20.0250.03517.50
5.6.10.0260.03317.32
5.6.00.0190.03217.44
5.5.380.0000.01114.46
5.5.370.0030.00614.33
5.5.360.0000.00914.64
5.5.350.1780.02517.52
5.5.340.0060.03817.79
5.5.330.0120.03517.72
5.5.320.0080.03517.71
5.5.310.0200.02717.64
5.5.300.0130.03517.45
5.5.290.0080.03817.53
5.5.280.0070.03717.70
5.5.270.0130.03617.56
5.5.260.0230.03017.53
5.5.250.0270.02917.50
5.5.240.0250.03717.11
5.5.230.0230.04517.27
5.5.220.0170.03417.33
5.5.210.0160.03317.19
5.5.200.0200.03316.98
5.5.190.0190.04017.30
5.5.180.0150.03517.19
5.5.170.0000.01114.36
5.5.160.0170.03317.32
5.5.150.0230.02817.02
5.5.140.0220.02817.27
5.5.130.0180.02817.27
5.5.120.0250.02117.27
5.5.110.0150.03317.14
5.5.100.0190.02917.19
5.5.90.0140.03217.22
5.5.80.0080.03017.19
5.5.70.0050.03517.30
5.5.60.0150.02817.24
5.5.50.0220.03817.29
5.5.40.0300.03517.01
5.5.30.0220.03017.20
5.5.20.0220.03017.14
5.5.10.0280.03817.04
5.5.00.0280.02817.08

preferences:
64.5 ms | 401 KiB | 5 Q