3v4l.org

run code in 500+ PHP versions simultaneously
<?php // returns true if property is safely accessible publicly by using $obj->$prop: function public_property_exists( $obj, $prop ){ // allow magic $obj->__isset( $prop ) to execute if exists if( isset( $obj->$prop )) return true; // no public/protected/private property exists with this name if( ! property_exists( $obj, $prop )) return false; // the property exists, but is it public? $rp = new ReflectionProperty( $obj, $prop ); return $rp->isPublic(); } class C { public $public = "I’m public!"; protected $protected = "I’m public!"; private $private = "I’m public!"; function __isset( $k ){ return substr( $k, 0, 5 ) === 'magic'; } function __get( $k ){ if( $k === 'magic_isset_but_null') return null; return "I’m {$k}!"; } } $o = new C(); foreach( array( 'public', 'protected', 'private', 'magic', 'magic_isset_but_null', 'missing' ) as $prop ){ if( public_property_exists( $o, $prop )) echo "\$o->{$prop} is a public property, its value is: ", var_export( $o->$prop, true ), "\n"; else echo "\$o->{$prop} is not a public property.\n"; }

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.5.90.0140.00617.79
8.5.80.0120.00617.60
8.5.70.0120.00617.59
8.5.60.0090.00717.59
8.5.50.0090.00917.60
8.5.40.0110.00818.36
8.5.30.0060.00718.97
8.5.20.0080.00919.05
8.5.10.0090.00317.62
8.5.00.0080.00519.29
8.4.240.0100.00620.50
8.4.230.0070.00720.37
8.4.220.0110.00720.29
8.4.210.0070.00621.41
8.4.200.0070.00321.62
8.4.190.0070.00221.43
8.4.180.0140.00823.49
8.4.170.0060.00922.75
8.4.160.0130.01122.66
8.4.150.0100.00618.46
8.4.140.0100.01018.43
8.4.130.0120.00620.91
8.4.120.0090.00821.01
8.4.110.0110.00720.99
8.4.100.0080.00718.57
8.4.90.0120.00718.52
8.4.80.0100.00919.59
8.4.70.0080.00918.69
8.4.60.0110.00618.21
8.4.50.0120.00918.96
8.4.40.0080.00619.08
8.4.30.0080.00619.18
8.4.20.0090.00518.47
8.4.10.0080.00519.55
8.3.330.0120.00819.59
8.3.320.0100.00919.31
8.3.310.0110.00619.40
8.3.300.0080.00719.70
8.3.290.0140.00620.54
8.3.280.0100.00920.50
8.3.270.0210.00817.18
8.3.260.0100.00517.50
8.3.250.0090.00918.55
8.3.240.0130.00717.88
8.3.230.0110.00617.48
8.3.220.0120.00717.45
8.3.210.0060.00617.54
8.3.200.0090.00517.45
8.3.190.0070.00717.61
8.3.180.0110.00817.63
8.3.170.0070.00718.69
8.3.160.0120.00418.74
8.3.150.0080.00919.69
8.3.140.0120.00617.74
8.3.130.0080.00617.59
8.3.120.0040.01018.82
8.3.110.0100.00417.43
8.3.100.0110.00217.59
8.3.90.0180.00624.00
8.3.80.0160.00720.62
8.3.70.0180.00820.61
8.3.60.0150.00521.27
8.3.50.0150.00721.17
8.3.40.0160.00722.86
8.3.30.0160.00723.34
8.3.20.0150.00623.55
8.3.10.0150.00623.71
8.3.00.0140.00524.14
8.2.330.0090.00919.67
8.2.320.0090.00518.87
8.2.310.0110.00819.06
8.2.300.0190.00918.26
8.2.290.0230.00817.36
8.2.280.0160.00817.36
8.2.270.0210.00616.83
8.2.260.0150.01117.33
8.2.250.0130.00616.64
8.2.240.0120.00717.81
8.2.230.0140.00418.59
8.2.220.0130.00727.05
8.2.210.0190.00523.35
8.2.200.0240.00319.82
8.2.190.0280.00519.98
8.2.180.0230.01019.90
8.2.170.0260.00721.08
8.2.160.0230.00722.49
8.2.150.0170.01023.43
8.2.140.0230.00722.99
8.2.130.0160.00623.66
8.2.120.0140.00521.95
8.2.110.0150.00421.88
8.2.100.0140.00521.41
8.2.90.0160.00621.30
8.2.80.0140.00721.22
8.2.70.0170.00521.19
8.2.60.0130.00521.56
8.2.50.0200.00521.56
8.2.40.0140.00621.52
8.2.30.0190.00421.16
8.2.20.0180.00621.14
8.2.10.0170.00721.21
8.2.00.0180.00321.31
8.1.340.0180.00718.62
8.1.330.0180.01019.12
8.1.320.0210.00916.15
8.1.310.0220.00717.24
8.1.300.0150.00617.28
8.1.290.0180.00524.55
8.1.280.0200.00822.92
8.1.270.0140.00322.57
8.1.260.0130.00323.66
8.1.250.0130.01024.12
8.1.240.0140.00421.45
8.1.230.0130.00721.39
8.1.220.0140.00721.47
8.1.210.0130.00722.02
8.1.200.0150.00521.43
8.1.190.0140.00521.38
8.1.180.0130.00721.39
8.1.170.0160.00521.47
8.1.160.0160.00421.49
8.1.150.0130.00522.20
8.1.140.0120.00721.42
8.1.130.0110.00721.46
8.1.120.0170.00421.49
8.1.110.0140.00621.48
8.1.100.0120.00821.44
8.1.90.0130.00721.40
8.1.80.0170.00321.45
8.1.70.0130.00421.45
8.1.60.0140.00721.55
8.1.50.0150.00621.52
8.1.40.0140.00621.52
8.1.30.0140.00621.64
8.1.20.0130.00821.57
8.1.10.0100.01021.59
8.1.00.0130.00821.85
8.0.300.0160.00521.02
8.0.290.0150.00621.39
8.0.280.0130.00421.03
8.0.270.0140.00521.02
8.0.260.0170.00521.32
8.0.250.0130.00621.13
8.0.240.0140.00721.09
8.0.230.0150.00421.23
8.0.220.0140.00421.09
8.0.210.0190.00320.64
8.0.200.0210.00420.65
8.0.190.0170.00520.67
8.0.180.0180.00320.66
8.0.170.0160.00720.71
8.0.160.0150.00720.67
8.0.150.0160.00520.67
8.0.140.0210.00320.59
8.0.130.0190.00320.80
8.0.120.0180.00520.62
8.0.110.0190.00420.69
8.0.100.0200.00320.60
8.0.90.0170.00620.61
8.0.80.0150.00820.97
8.0.70.0140.00421.01
8.0.60.0180.00620.61
8.0.50.0170.00320.62
8.0.30.0160.00420.68
8.0.20.0130.00520.69
8.0.10.0170.00420.71
8.0.00.0280.00726.77
7.4.330.0280.00326.77
7.4.320.0200.01626.77
7.4.300.0290.00326.77
7.4.290.0190.01326.77
7.4.280.0430.00426.77
7.4.270.0350.00326.77
7.4.260.0250.00526.77
7.4.250.0170.00926.77
7.4.240.0190.00026.77
7.4.230.0190.00026.77
7.4.220.0160.00226.77
7.4.210.0180.00326.77
7.4.200.0110.00726.77
7.4.190.0140.00526.77
7.4.180.0110.00726.77
7.4.160.0210.00026.77
7.4.150.0110.00826.77
7.4.140.0120.00626.77
7.4.130.0180.00026.77
7.4.120.0190.00026.77
7.4.110.0140.00426.77
7.4.100.0140.00626.77
7.4.90.0190.00026.77
7.4.80.0160.00326.77
7.4.70.0140.00426.77
7.4.60.0180.00026.77
7.4.50.0200.00326.77
7.4.40.0160.00526.77
7.4.30.0140.00326.77
7.4.20.0140.00326.77
7.4.10.0130.00526.77
7.4.00.0110.01126.77
7.3.330.0130.00426.77
7.3.320.0090.00726.77
7.3.310.0120.00826.77
7.3.300.0140.00626.77
7.3.290.0170.00026.77
7.3.280.0150.00626.77
7.3.270.0120.00926.77
7.3.260.0120.00826.77
7.3.250.0180.00026.77
7.3.240.0170.00326.77
7.3.230.0180.00326.77
7.3.220.0130.00326.77
7.3.210.0090.00926.77
7.3.200.0100.00726.77
7.3.190.0120.00626.77
7.3.180.0150.00326.77
7.3.170.0110.00826.77
7.3.160.0170.00026.77
7.3.150.0160.00526.77
7.3.140.0130.00626.77
7.3.130.0140.00526.77
7.3.120.0190.00026.77
7.3.110.0130.00426.77
7.3.100.0190.00526.77
7.3.90.0180.00526.77
7.3.80.0190.00026.77
7.3.70.0180.01426.77
7.3.60.0130.00626.77
7.3.50.0180.00026.77
7.3.40.0180.00626.77
7.3.30.0150.00326.77
7.3.20.0210.00026.77
7.3.10.0180.00026.77
7.3.00.0110.00726.77
7.2.340.0180.00026.77
7.2.330.0200.00026.77
7.2.320.0310.00726.77
7.2.310.0140.00926.77
7.2.300.0160.01126.77
7.2.290.0140.00326.77
7.2.280.0200.00626.77
7.2.270.0180.00026.77
7.2.260.0160.00326.77
7.2.250.0180.00426.77
7.2.240.0140.00526.77
7.2.230.0050.01126.77
7.2.220.0160.00026.77
7.2.210.0260.00926.77
7.2.200.0220.01126.77
7.2.190.0200.01626.77
7.2.180.0230.01226.77
7.2.170.0330.00726.77
7.2.160.0360.00426.77
7.2.150.0180.00726.77
7.2.140.0140.00426.77
7.2.130.0280.00926.77
7.2.120.0250.00726.77
7.2.110.0240.00426.77
7.2.100.0240.00726.77
7.2.90.0220.00626.77
7.2.80.0270.00726.77
7.2.70.0260.01026.77
7.2.60.0220.00726.77
7.2.50.0250.01026.77
7.2.40.0290.00626.77
7.2.30.0310.00426.77
7.2.20.0310.00426.77
7.2.10.0300.00726.77
7.2.00.0290.00726.77
7.1.330.0270.00626.77
7.1.320.0250.00726.77
7.1.310.0160.00426.77
7.1.300.0260.00026.77
7.1.290.0150.00026.77
7.1.280.0130.00326.77
7.1.270.0090.00626.77
7.1.260.0160.00026.77
7.1.250.0130.01326.77
7.1.240.0340.00326.77
7.1.230.0230.00926.77
7.1.220.0240.00726.77
7.1.210.0310.00026.77
7.1.200.0210.00726.77
7.1.190.0230.00426.77
7.1.180.0190.01126.77
7.1.170.0250.00626.77
7.1.160.0200.01026.77
7.1.150.0270.00726.77
7.1.140.0240.00326.77
7.1.130.0070.00726.77
7.1.120.0190.00326.77
7.1.110.0150.00326.77
7.1.100.0110.00426.77
7.1.90.0100.00326.77
7.1.80.0070.00726.77
7.1.70.0250.00826.77
7.1.60.0080.00826.77
7.1.50.0220.00026.77
7.1.40.0070.00726.77
7.1.30.0170.00626.77
7.1.20.0210.00426.77
7.1.10.0190.00826.77
7.1.00.0280.00026.77
7.0.330.0200.01026.77
7.0.320.0220.00726.77
7.0.310.0260.00326.77
7.0.300.0270.00326.77
7.0.290.0280.00326.77
7.0.280.0320.00326.77
7.0.270.0170.01426.77
7.0.260.0150.01526.77
7.0.250.0230.00726.77
7.0.240.0220.00826.77
7.0.230.0250.00826.77
7.0.220.0290.00026.77
7.0.210.0260.00426.77
7.0.200.0200.01026.77
7.0.190.0310.00326.77
7.0.180.0270.00926.77
7.0.170.0210.00726.77
7.0.160.0250.00726.77
7.0.150.0280.00426.77
7.0.140.0190.00626.77
7.0.130.0230.00326.77
7.0.120.0260.00426.77
7.0.110.0260.00626.77
7.0.100.0310.00326.77
7.0.90.0230.00726.77
7.0.80.0240.00626.77
7.0.70.0230.00726.77
7.0.60.0270.00326.77
7.0.50.0270.00426.77
7.0.40.0230.00726.77
7.0.30.0240.00926.77
7.0.20.0230.00726.77
7.0.10.0240.00626.77
7.0.00.0270.00326.77
5.6.400.0220.00926.77
5.6.390.0470.00026.77
5.6.380.0270.00926.77
5.6.370.0240.00026.77
5.6.360.0250.00426.77
5.6.350.0120.00326.77
5.6.340.0160.00826.77
5.6.330.0160.01326.77
5.6.320.0250.00626.77
5.6.310.0210.00826.77
5.6.300.0250.00326.77
5.6.290.0200.01126.77
5.6.280.0240.00826.77
5.6.270.0220.01226.77
5.6.260.0340.00326.77
5.6.250.0210.00926.77
5.6.240.0050.01026.77
5.6.230.0260.00526.77
5.6.220.0210.01126.77
5.6.210.0260.00626.77
5.6.200.0250.00826.77
5.6.190.0260.00626.77
5.6.180.0170.01526.77
5.6.170.0260.01026.77
5.6.160.0290.00426.77
5.6.150.0230.00826.77
5.6.140.0220.00926.77
5.6.130.0180.00826.77
5.6.120.0250.00026.77
5.6.110.0220.00326.77
5.6.100.0280.00426.77
5.6.90.0290.00426.77
5.6.80.0240.01426.77
5.6.70.0230.00926.77
5.6.60.0260.00026.77
5.6.50.0170.00726.77
5.6.40.0210.00826.77
5.6.30.0230.00726.77
5.6.20.0210.00026.77
5.6.10.0180.00426.77
5.6.00.0080.00826.77
5.5.380.0150.00026.77
5.5.370.0100.00626.77
5.5.360.0140.01026.77
5.5.350.0220.00226.77
5.5.340.0300.00426.77
5.5.330.0280.00426.77
5.5.320.0250.00726.77
5.5.310.0280.00626.77
5.5.300.0150.00826.77
5.5.290.0180.00326.77
5.5.280.0120.01226.77
5.5.270.0170.00726.77
5.5.260.0160.00326.77
5.5.250.0130.00426.77
5.5.240.0170.00026.77
5.5.230.0140.00526.77
5.5.220.0130.00326.77
5.5.210.0100.00326.77
5.5.200.0070.00726.77
5.5.190.0120.00226.77
5.5.180.0140.00026.77
5.5.170.0120.00326.77
5.5.160.0090.00626.77
5.5.150.0070.00726.77
5.5.140.0140.00026.77
5.5.130.0110.00326.77
5.5.120.0110.00426.77
5.5.110.0060.00926.77
5.5.100.0130.00026.77
5.5.90.0040.00926.77
5.5.80.0140.00026.77
5.5.70.0060.00626.77
5.5.60.0200.00426.77
5.5.50.0250.00426.77
5.5.40.0050.00926.77
5.5.30.0170.00326.77
5.5.20.0200.01026.77
5.5.10.0140.00026.77
5.5.00.0170.00026.77
5.4.450.0110.00326.77
5.4.440.0150.00826.77
5.4.430.0080.01226.77
5.4.420.0130.00026.77
5.4.410.0120.00026.77
5.4.400.0090.00326.77
5.4.390.0080.00326.77
5.4.380.0080.00326.77
5.4.370.0110.00026.77
5.4.360.0110.00026.77
5.4.350.0110.00026.77
5.4.340.0070.00426.77
5.4.330.0070.00426.77
5.4.320.0110.00026.77
5.4.310.0070.00426.77
5.4.300.0200.00026.77
5.4.290.0110.00026.77
5.4.280.0080.00326.77
5.4.270.0110.00026.77
5.4.260.0110.00026.77
5.4.250.0040.00726.77
5.4.240.0080.00326.77
5.4.230.0110.00026.77
5.4.220.0070.00726.77
5.4.210.0050.00526.77
5.4.200.0110.00026.77
5.4.190.0070.00426.77
5.4.180.0090.00326.77
5.4.170.0090.00326.77
5.4.160.0060.00626.77
5.4.150.0110.00426.77
5.4.140.0110.00026.77
5.4.130.0080.00326.77
5.4.120.0030.00726.77
5.4.110.0100.00026.77
5.4.100.0050.00526.77
5.4.90.0100.00026.77
5.4.80.0070.00326.77
5.4.70.0000.01126.77
5.4.60.0080.00326.77
5.4.50.0000.01026.77
5.4.40.0100.00026.77
5.4.30.0050.00526.77
5.4.20.0080.00326.77
5.4.10.0050.00526.77
5.4.00.0160.00026.77
5.3.290.0070.00726.77
5.3.280.0110.00026.77
5.3.270.0050.00926.77
5.3.260.0120.00026.77
5.3.250.0080.00426.77
5.3.240.0070.00726.77
5.3.230.0110.00426.77
5.3.220.0120.00026.77
5.3.210.0090.00326.77
5.3.200.0100.00326.77
5.3.190.0110.00026.77
5.3.180.0050.00526.77
5.3.170.0090.00226.77
5.3.160.0080.00326.77
5.3.150.0070.00426.77
5.3.140.0080.00426.77
5.3.130.0110.00026.77
5.3.120.0090.00326.77
5.3.110.0060.00626.77
5.3.100.0100.00026.77
5.3.90.0100.00026.77
5.3.80.0200.00026.77
5.3.70.0040.00726.77
5.3.60.0150.00426.77
5.3.50.0040.00926.77
5.3.40.0070.00426.77
5.3.30.0050.00526.77
5.3.20.0100.00326.77
5.3.10.0050.00526.77
5.3.00.0110.00326.77
5.2.170.0060.00326.77
5.2.160.0130.00626.77
5.2.150.0110.00726.77
5.2.140.0090.00026.77
5.2.130.0060.00326.77
5.2.120.0050.00326.77
5.2.110.0090.00026.77
5.2.100.0080.00026.77
5.2.90.0190.00026.77
5.2.80.0090.00026.77
5.2.70.0110.00726.77
5.2.60.0040.00426.77
5.2.50.0080.01126.77
5.2.40.0160.00026.77
5.2.30.0120.00326.77
5.2.20.0100.00526.77
5.2.10.0080.01126.77
5.2.00.0180.00026.77
5.1.60.0130.00426.77
5.1.50.0090.00926.77
5.1.40.0040.01226.77
5.1.30.0150.00226.77
5.1.20.0150.00326.77
5.1.10.0100.00826.77
5.1.00.0100.00726.77
5.0.50.0110.00426.77
5.0.40.0120.00326.77
5.0.30.0070.00726.77
5.0.20.0040.01126.77
5.0.10.0060.00926.77
5.0.00.0150.00026.77
4.4.90.0050.00526.77
4.4.80.0070.00326.77
4.4.70.0090.00026.77
4.4.60.0090.00026.77
4.4.50.0090.00026.77
4.4.40.0090.00026.77
4.4.30.0080.00026.77
4.4.20.0060.00326.77
4.4.10.0090.00026.77
4.4.00.0080.00026.77
4.3.110.0090.00026.77
4.3.100.0080.00026.77
4.3.90.0090.00026.77
4.3.80.0040.00426.77
4.3.70.0070.00226.77
4.3.60.0080.00026.77
4.3.50.0060.00226.77
4.3.40.0080.00026.77
4.3.30.0050.00226.77
4.3.20.0020.00426.77
4.3.10.0070.00026.77
4.3.00.0020.00426.77

preferences:
52.48 ms | 2913 KiB | 5 Q