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();
Output for 8.2.0 - 8.2.18, 8.3.0 - 8.3.6
Deprecated: Creation of dynamic property Venue::$verified is deprecated in /in/UcSHU on line 147 Deprecated: Creation of dynamic property Venue::$restricted is deprecated in /in/UcSHU on line 147 Deprecated: Creation of dynamic property Venue::$stats is deprecated in /in/UcSHU on line 147 Deprecated: Creation of dynamic property Venue::$specials is deprecated in /in/UcSHU on line 147 Deprecated: Creation of dynamic property Venue::$hereNow is deprecated in /in/UcSHU on line 147 Deprecated: Creation of dynamic property Venue::$referralId is deprecated in /in/UcSHU on line 147 Venue Object ( [id:protected] => 4c44c3e074ffc928250576cc [categories:protected] => Array ( [0] => stdClass Object ( [id] => 4bf58dd8d48988d101951735 [name] => Thrift / Vintage Store [pluralName] => Thrift / Vintage Stores [shortName] => Thrift / Vintage [icon] => stdClass Object ( [prefix] => https://ss1.4sqi.net/img/categories_v2/shops/default_ [suffix] => .png ) [primary] => 1 ) ) [contact:protected] => stdClass Object ( [phone] => 2122899617 [formattedPhone] => (212) 289-9617 ) [fourSquareVenueId:protected] => [location:protected] => stdClass Object ( [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 ) [name:protected] => Salvation Army [statistics:protected] => [verified] => [restricted] => 1 [stats] => stdClass Object ( [checkinsCount] => 71 [usersCount] => 46 [tipCount] => 3 ) [specials] => stdClass Object ( [count] => 0 [items] => Array ( ) ) [hereNow] => stdClass Object ( [count] => 0 [groups] => Array ( ) ) [referralId] => v-1393405742 ) 4c44c3e074ffc928250576cc
Output for 5.4.0 - 5.4.45, 5.5.0 - 5.5.38, 5.6.0 - 5.6.28, 7.0.0 - 7.0.20, 7.1.0 - 7.1.7, 7.2.29 - 7.2.33, 7.3.12 - 7.3.33, 7.4.0 - 7.4.33, 8.0.0 - 8.0.30, 8.1.0 - 8.1.28
Venue Object ( [id:protected] => 4c44c3e074ffc928250576cc [categories:protected] => Array ( [0] => stdClass Object ( [id] => 4bf58dd8d48988d101951735 [name] => Thrift / Vintage Store [pluralName] => Thrift / Vintage Stores [shortName] => Thrift / Vintage [icon] => stdClass Object ( [prefix] => https://ss1.4sqi.net/img/categories_v2/shops/default_ [suffix] => .png ) [primary] => 1 ) ) [contact:protected] => stdClass Object ( [phone] => 2122899617 [formattedPhone] => (212) 289-9617 ) [fourSquareVenueId:protected] => [location:protected] => stdClass Object ( [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 ) [name:protected] => Salvation Army [statistics:protected] => [verified] => [restricted] => 1 [stats] => stdClass Object ( [checkinsCount] => 71 [usersCount] => 46 [tipCount] => 3 ) [specials] => stdClass Object ( [count] => 0 [items] => Array ( ) ) [hereNow] => stdClass Object ( [count] => 0 [groups] => Array ( ) ) [referralId] => v-1393405742 ) 4c44c3e074ffc928250576cc
Output for 4.4.2 - 4.4.9, 5.1.0 - 5.1.6, 5.2.0 - 5.2.17, 5.3.0 - 5.3.29
Parse error: syntax error, unexpected '[', expecting ')' in /in/UcSHU on line 25
Process exited with code 255.
Output for 4.3.0 - 4.3.1, 4.3.5 - 4.3.11, 4.4.0 - 4.4.1, 5.0.0 - 5.0.5
Parse error: parse error, unexpected '[', expecting ')' in /in/UcSHU on line 25
Process exited with code 255.
Output for 4.3.2 - 4.3.4
Parse error: parse error, expecting `')'' in /in/UcSHU on line 25
Process exited with code 255.

preferences:
296.13 ms | 401 KiB | 350 Q