3v4l.org

run code in 300+ PHP versions simultaneously
<?php $json = '{ "expand":"names", "startAt":0, "maxResults":50, "total":1, "issues":[ { "expand":"example", "id":"129018", "self":"https://example.com", "key":"914", "fields":{ "summary":"Hello there" } } ] }'; $array_result = json_decode($json); echo '<pre>'; print_r($array_result); echo '</pre>'; echo $array_result->issues[0]->fields->summary;
Output for git.master, git.master_jit, rfc.property-hooks
<pre>stdClass Object ( [expand] => names [startAt] => 0 [maxResults] => 50 [total] => 1 [issues] => Array ( [0] => stdClass Object ( [expand] => example [id] => 129018 [self] => https://example.com [key] => 914 [fields] => stdClass Object ( [summary] => Hello there ) ) ) ) </pre>Hello there

This tab shows result from various feature-branches currently under review by the php developers. Contact me to have additional branches featured.

Active branches

Archived branches

Once feature-branches are merged or declined, they are no longer available. Their functionality (when merged) can be viewed from the main output page


preferences:
31.44 ms | 402 KiB | 8 Q