3v4l.org

run code in 300+ PHP versions simultaneously
<?php $jsonfile = file_get_contents('https://www.alphavantage.co/query?function=TIME_SERIES_INTRADAY&symbol=MSFT&interval=15min&outputsize=full&apikey=demo'); $jsonarray = ["Meta Data"]=> object(stdClass)#2 (5) { ["1. Information"]=> string(49) "Daily Prices (open, high, low, close) and Volumes" ["2. Symbol"]=> string(5) "AAWVX" ["3. Last Refreshed"]=> string(10) "2017-06-30" ["4. Output Size"]=> string(9) "Full size" ["5. Time Zone"]=> string(10) "US/Eastern" } ["Time Series (Daily)"]=> object(stdClass)#3 (105) { ["2017-06-30"]=> object(stdClass)#4 (5) { ["1. open"]=> string(7) "10.5100" ["2. high"]=> string(7) "10.5100" ["3. low"]=> string(7) "10.5100" ["4. close"]=> string(7) "10.5100" ["5. volume"]=> string(1) "0" } ["2017-06-29"]=> object(stdClass)#5 (5) { ["1. open"]=> string(7) "10.4800" ["2. high"]=> string(7) "10.4800" ["3. low"]=> string(7) "10.4800" ["4. close"]=> string(7) "10.4800" ["5. volume"]=> string(1) "0" } ["2017-06-28"]=> object(stdClass)#6 (5) { ["1. open"]=> string(7) "10.5600" ["2. high"]=> string(7) "10.5600" ["3. low"]=> string(7) "10.5600" ["4. close"]=> string(7) "10.5600" ["5. volume"]=> string(1) "0"; echo $jsonarray['Meta Data']; var_dump($jsonarray);
Output for 7.0.0 - 7.0.20, 7.1.0 - 7.1.6
Parse error: syntax error, unexpected '=>' (T_DOUBLE_ARROW) in /in/rDOCq on line 4
Process exited with code 255.

preferences:
167.11 ms | 1395 KiB | 35 Q