3v4l.org

run code in 300+ PHP versions simultaneously
<?php $station = (object) array( 'id' => 'asl1k2l2', 'name' => 'Star', 'brandId' => 12, 'selfReport' => 0, 'checked' => 0, 'mts' => 1, 'streetAddress' => 'Berrenrather Straße 12', 'zipCode' => 50937, 'cityName' => 'Köln', 'countryCode' => 'DE', 'phone' => '+49221123456', 'coordinates' => (object) array( 'lat' => '50.467839', 'lng' => '7.92821', ), 'openHours' => 'Mo-So 0:00-24:00', 'fuelOrder' => (object) array(1,2), 'fuelTypes' => (object) array( (object) array( 'id' => 1, 'name' => 'Diesel', ), (object) array( 'id' => 2, 'name' => 'Benzin', ) ), ); print $station->id . PHP_EOL; print $station->streetAddress . PHP_EOL; print $station->phone . PHP_EOL; print $station->coordinates->lat . PHP_EOL; print $station->fuelTypes->(0)->name . PHP_EOL;
Output for 5.4.0 - 5.4.22
Parse error: syntax error, unexpected '(', expecting identifier (T_STRING) or variable (T_VARIABLE) or '{' or '$' in /in/W2SGT on line 35
Process exited with code 255.
Output for 5.3.0 - 5.3.27
Parse error: syntax error, unexpected '(', expecting T_STRING or T_VARIABLE or '{' or '$' in /in/W2SGT on line 35
Process exited with code 255.

preferences:
180.67 ms | 1395 KiB | 58 Q