3v4l.org

run code in 300+ PHP versions simultaneously
<?php $arr = array( 'id' => '4c44c3e074ffc928250576cc', 'name' => 'Salvation Army', 'contact' => array( 'phone' => '2122899617', 'formattedPhone' => '(212) 289-9617' ), 'location' => array ( 'address' => '26 E 125th St', 'crossStreet' => 'btw Madison & 5th Ave', 'lat' => '40.805853703834', 'lng' => '-73.941053819056', 'distance' => '53', 'postalCode' => '10035', 'cc' => 'US', 'city' => 'New York', 'state' => 'NY', 'country' => 'United States' ), 'categories' => Array ( [ 'id' => '4bf58dd8d48988d101951735', 'name' => 'Thrift / Vintage Store', 'pluralName' => 'Thrift / Vintage Stores', 'shortName' => 'Thrift / Vintage', 'icon' => array ( 'prefix' => 'https://ss1.4sqi.net/img/categories_v2/shops/default_', 'suffix' => '.png' ), 'primary' => '1', ] ), 'verified' => '', 'restricted' => '1', 'stats' => array ( 'checkinsCount' => '71', 'usersCount' => '46', 'tipCount' => '3' ), 'specials' => array ( 'count' => '0', 'items' => Array() ), 'hereNow' => array ( 'count' => '0', 'groups' => Array() ), 'referralId' => 'v-1393405742' ); class Venue { protected $id; protected $categories; protected $contact; protected $fourSquareVenueId; protected $location; protected $name; protected $statistics; public function __construct() { $this->categories = []; } /** * Get id * * @return id $id */ public function getId() { return $this->id; } /** * Add category * * @param \Trist\Bundle\CommonBundle\Document\Venue\VenueCategory $category */ public function addCategory( $category) { $this->categories[] = $category; } /** * Remove category * * @param \Trist\Bundle\CommonBundle\Document\Venue\VenueCategory $category */ public function removeCategory($category) { $this->categories->removeElement($category); } /** * Get categories * * @return \Doctrine\Common\Collections\ArrayCollection $categories */ public function getCategories() { return $this->categories; } /** * Set contact * * @param \Trist\Bundle\CommonBundle\Document\Venue\VenueContact $contact * @return self */ public function setContact($contact) { $this->contact = $contact; return $this; } } function cast($destination, $sourceObject) { if (is_string($destination)) { $destination = new $destination(); } $sourceReflection = new ReflectionObject($sourceObject); $destinationReflection = new ReflectionObject($destination); $sourceProperties = $sourceReflection->getProperties(); foreach ($sourceProperties as $sourceProperty) { $sourceProperty->setAccessible(true); $name = $sourceProperty->getName(); $value = $sourceProperty->getValue($sourceObject); if ($destinationReflection->hasProperty($name)) { $propDest = $destinationReflection->getProperty($name); $propDest->setAccessible(true); $propDest->setValue($destination,$value); } else { $destination->$name = $value; } } return $destination; } $obj = json_decode(json_encode($arr)); $o2 = cast('Venue', $obj); print_r($o2); echo $o2->getId();

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.00318.68
8.3.50.0120.00521.21
8.3.40.0070.00718.91
8.3.30.0140.00719.22
8.3.20.0040.00420.27
8.3.10.0050.00321.97
8.3.00.0040.00422.43
8.2.180.0120.00616.75
8.2.170.0040.01122.96
8.2.160.0100.00320.52
8.2.150.0000.00824.18
8.2.140.0050.00324.66
8.2.130.0140.00326.16
8.2.120.0080.00019.77
8.2.110.0060.00320.35
8.2.100.0070.00419.21
8.2.90.0000.00819.17
8.2.80.0000.00819.27
8.2.70.0000.00917.50
8.2.60.0000.00918.05
8.2.50.0000.00918.07
8.2.40.0040.00418.28
8.2.30.0070.00017.99
8.2.20.0080.00017.54
8.2.10.0050.00317.63
8.2.00.0040.00417.72
8.1.280.0150.00025.92
8.1.270.0040.00420.27
8.1.260.0040.00426.35
8.1.250.0040.00428.09
8.1.240.0060.00323.82
8.1.230.0110.00019.15
8.1.220.0080.00017.77
8.1.210.0050.00318.77
8.1.200.0090.00017.25
8.1.190.0080.00017.64
8.1.180.0060.00318.71
8.1.170.0000.00818.72
8.1.160.0030.00322.23
8.1.150.0040.00418.59
8.1.140.0070.00017.46
8.1.130.0020.00517.89
8.1.120.0070.00017.38
8.1.110.0040.00417.51
8.1.100.0020.00517.54
8.1.90.0080.00017.46
8.1.80.0040.00417.46
8.1.70.0080.00017.49
8.1.60.0030.00617.67
8.1.50.0030.00617.51
8.1.40.0030.00617.57
8.1.30.0040.00417.68
8.1.20.0050.00317.55
8.1.10.0030.00517.59
8.1.00.0040.00417.54
8.0.300.0040.00418.77
8.0.290.0020.00517.17
8.0.280.0030.00318.48
8.0.270.0040.00417.18
8.0.260.0080.00016.80
8.0.250.0030.00316.95
8.0.240.0000.00717.02
8.0.230.0000.00817.00
8.0.220.0040.00416.91
8.0.210.0030.00316.94
8.0.200.0070.00016.83
8.0.190.0030.00616.99
8.0.180.0050.00316.84
8.0.170.0000.00816.95
8.0.160.0040.00416.96
8.0.150.0040.00416.93
8.0.140.0110.00016.80
8.0.130.0030.00313.33
8.0.120.0000.00816.78
8.0.110.0040.00416.82
8.0.100.0050.00216.82
8.0.90.0040.00416.73
8.0.80.0090.00616.90
8.0.70.0040.00416.79
8.0.60.0000.00716.97
8.0.50.0080.00016.81
8.0.30.0070.01117.02
8.0.20.0080.01117.40
8.0.10.0040.00417.11
8.0.00.0120.00616.60
7.4.330.0060.00015.09
7.4.320.0030.00316.52
7.4.300.0060.00016.63
7.4.290.0030.00316.68
7.4.280.0030.00516.54
7.4.270.0030.00316.54
7.4.260.0000.00716.48
7.4.250.0030.00516.48
7.4.240.0050.00216.55
7.4.230.0000.00716.55
7.4.220.0180.00016.57
7.4.210.0070.00816.54
7.4.200.0070.00016.53
7.4.190.0040.00416.59
7.4.160.0140.00316.57
7.4.150.0120.00617.40
7.4.140.0100.01317.86
7.4.130.0120.00616.44
7.4.120.0130.00716.48
7.4.110.0030.01416.45
7.4.100.0130.00716.52
7.4.90.0130.00416.41
7.4.80.0080.01119.39
7.4.70.0090.00616.34
7.4.60.0070.01016.52
7.4.50.0070.00016.30
7.4.40.0040.01122.77
7.4.30.0150.00016.48
7.4.00.0060.00915.03
7.3.330.0000.00613.39
7.3.320.0030.00313.38
7.3.310.0000.00716.43
7.3.300.0000.00716.25
7.3.290.0070.00716.49
7.3.280.0090.00816.37
7.3.270.0090.00917.40
7.3.260.0090.00916.62
7.3.250.0050.01416.61
7.3.240.0120.00616.56
7.3.230.0140.00316.66
7.3.210.0060.01116.37
7.3.200.0060.01219.39
7.3.190.0090.01416.57
7.3.180.0030.01516.48
7.3.170.0100.01116.57
7.3.160.0110.00416.47
7.3.120.0060.00914.70
7.2.330.0120.00616.61
7.2.320.0120.00616.86
7.2.310.0030.01416.72
7.2.300.0070.01016.69
7.2.290.0070.01016.66
7.1.70.0000.01017.08
7.1.60.0000.02219.82
7.1.50.0130.00617.02
7.1.00.0030.03322.46
7.0.200.0040.00716.49
7.0.140.0030.07722.06
7.0.90.0830.03720.03
7.0.80.0630.04020.05
7.0.70.0570.08719.98
7.0.60.0370.03719.95
7.0.50.0230.06320.38
7.0.40.0000.04320.14
7.0.30.0030.04720.18
7.0.20.0030.04020.18
7.0.10.0070.04020.12
7.0.00.0070.03720.16
5.6.280.0130.06721.20
5.6.240.0100.08320.66
5.6.230.0130.07720.76
5.6.220.0170.07020.53
5.6.210.0100.08020.61
5.6.200.0070.05020.99
5.6.190.0030.04320.99
5.6.180.0070.05021.15
5.6.170.0100.03720.99
5.6.160.0070.04021.08
5.6.150.0030.08320.99
5.6.140.0030.06021.18
5.6.130.0070.04721.05
5.6.120.0070.04021.07
5.6.110.0030.03721.12
5.6.100.0000.04721.09
5.6.90.0030.04321.13
5.6.80.0070.04020.40
5.6.70.0070.05720.53
5.6.60.0070.04020.38
5.6.50.0130.03320.57
5.6.40.0070.05320.48
5.6.30.0070.03720.50
5.6.20.0030.03320.56
5.6.10.0030.04020.33
5.6.00.0000.05720.55
5.5.380.0100.07020.50
5.5.370.0030.08320.60
5.5.360.0070.04720.59
5.5.350.0130.04020.48
5.5.340.0070.04720.80
5.5.330.0030.04020.82
5.5.320.0130.07720.92
5.5.310.0070.04320.66
5.5.300.0000.04720.88
5.5.290.0030.04020.89
5.5.280.0030.04720.86
5.5.270.0030.06320.90
5.5.260.0130.03020.68
5.5.250.0030.04320.67
5.5.240.0070.03720.16
5.5.230.0030.05320.15
5.5.220.0000.04320.29
5.5.210.0030.03720.21
5.5.200.0070.03020.23
5.5.190.0070.03720.17
5.5.180.0000.04320.29
5.5.160.0070.03020.31
5.5.150.0170.03020.32
5.5.140.0130.03020.30
5.5.130.0070.05320.14
5.5.120.0030.08020.22
5.5.110.0030.08720.27
5.5.100.0100.07020.14
5.5.90.0070.08320.21
5.5.80.0130.07020.19
5.5.70.0000.07020.13
5.5.60.0130.03320.14
5.5.50.0030.08020.07
5.5.40.0100.05020.09
5.5.30.0130.07720.12
5.5.20.0130.07020.13
5.5.10.0100.06720.06
5.5.00.0070.07320.09
5.4.450.0070.03719.27
5.4.440.0000.04319.56
5.4.430.0070.03719.22
5.4.420.0070.03719.41
5.4.410.0070.04019.40
5.4.400.0030.04019.05
5.4.390.0170.03019.09
5.4.380.0030.05319.21
5.4.370.0000.03719.04
5.4.360.0100.05319.04
5.4.350.0070.03719.04
5.4.340.0000.04319.13
5.4.320.0070.04019.03
5.4.310.0070.04319.14
5.4.300.0000.04319.08
5.4.290.0000.04018.88
5.4.280.0100.07719.16
5.4.270.0070.08319.03
5.4.260.0100.05019.14
5.4.250.0070.08019.12
5.4.240.0070.08018.89
5.4.230.0030.05319.03
5.4.220.0100.07319.15
5.4.210.0100.07319.02
5.4.200.0070.07318.84
5.4.190.0030.08019.12
5.4.180.0070.07719.17
5.4.170.0030.04319.03
5.4.160.0070.04719.10
5.4.150.0030.08719.12
5.4.140.0030.05016.35
5.4.130.0170.06316.34
5.4.120.0000.06016.43
5.4.110.0070.04716.38
5.4.100.0130.07016.56
5.4.90.0070.07316.54
5.4.80.0100.06316.51
5.4.70.0070.07316.40
5.4.60.0130.07316.38
5.4.50.0100.05716.34
5.4.40.0100.05016.53
5.4.30.0170.07016.36
5.4.20.0070.07716.41
5.4.10.0030.05316.49
5.4.00.0070.07315.70
5.3.290.0000.07014.58
5.3.280.0030.04714.53
5.3.270.0070.07714.46
5.3.260.0030.04314.47
5.3.250.0070.07014.56
5.3.240.0130.07014.46
5.3.230.0070.07314.59
5.3.220.0030.05014.47
5.3.210.0030.04014.39
5.3.200.0030.06714.50
5.3.190.0030.08014.43
5.3.180.0070.07314.53
5.3.170.0100.04314.40
5.3.160.0070.05014.42
5.3.150.0100.07014.51
5.3.140.0130.06314.52
5.3.130.0170.06714.50
5.3.120.0100.07714.36
5.3.110.0030.07014.50
5.3.100.0100.05314.00
5.3.90.0070.07314.01
5.3.80.0100.06714.02
5.3.70.0070.06714.01
5.3.60.0000.07713.99
5.3.50.0030.05313.91
5.3.40.0030.04313.71
5.3.30.0070.06713.84
5.3.20.0070.06713.66
5.3.10.0070.03713.64
5.3.00.0130.05713.58
5.2.170.0030.03311.01
5.2.160.0100.05711.11
5.2.150.0030.03711.00
5.2.140.0070.06310.96
5.2.130.0030.06011.13
5.2.120.0100.03711.14
5.2.110.0030.03311.10
5.2.100.0070.06011.06
5.2.90.0030.05311.09
5.2.80.0030.04310.96
5.2.70.0070.03311.05
5.2.60.0100.05310.89
5.2.50.0070.03710.89
5.2.40.0030.03311.01
5.2.30.0030.05010.96
5.2.20.0130.05311.02
5.2.10.0070.05310.79
5.2.00.0030.03710.76
5.1.60.0000.05010.03
5.1.50.0030.04010.02
5.1.40.0070.04710.05
5.1.30.0000.03310.42
5.1.20.0070.05710.43
5.1.10.0100.0509.88
5.1.00.0030.0409.91
5.0.50.0100.0408.43
5.0.40.0070.0408.25
5.0.30.0100.0578.23
5.0.20.0030.0438.05
5.0.10.0100.0208.07
5.0.00.0030.0608.15
4.4.90.0000.0377.37
4.4.80.0070.0307.37
4.4.70.0030.0377.37
4.4.60.0030.0307.37
4.4.50.0030.0337.37
4.4.40.0000.0577.37
4.4.30.0000.0307.37
4.4.20.0000.0337.37
4.4.10.0030.0377.37
4.4.00.0030.0537.37
4.3.110.0070.0237.37
4.3.100.0000.0377.37
4.3.90.0000.0277.37
4.3.80.0070.0477.37
4.3.70.0000.0377.37
4.3.60.0030.0277.37
4.3.50.0000.0377.37
4.3.40.0000.0407.37
4.3.30.0000.0377.37
4.3.20.0070.0177.37
4.3.10.0030.0337.37
4.3.00.0000.0307.37

preferences:
49.49 ms | 401 KiB | 5 Q