3v4l.org

run code in 300+ PHP versions simultaneously
<?php $array = '{"Saturday" : { "00-06" : "Non-stop", "19-22" : "Saturday Night Club Mix" }, "Sunday" : { "00-04" : "Party cool down", "04-24" : "Non-stop" }}'; //$days[] = json_decode($array, TRUE); /*foreach($days as $day=>$time) { echo '<div class="day">'; echo '<h2>' . $day . '</h2>'; echo '<ul>'; foreach($time as $timee=>$item) { echo '<li>'; echo '<span class="time">' . $timee . '</span>&nbsp;'; echo $item; echo '</li>'; } echo '</ul>'; echo '</div>'; }*/ $jsonIterator = new RecursiveIteratorIterator( new RecursiveArrayIterator(json_decode($array, TRUE)), RecursiveIteratorIterator::SELF_FIRST); foreach ($jsonIterator as $key => $val) { echo '<div class="day last">'; if(is_array($val)) { echo "<h2>$key</h2><ul>"; } else { echo "<span class=\"time\">$key</span>:&nbsp;$val\n"; } echo '</ul></div>'; }
Output for git.master, git.master_jit, rfc.property-hooks
<div class="day last"><h2>Saturday</h2><ul></ul></div><div class="day last"><span class="time">00-06</span>:&nbsp;Non-stop </ul></div><div class="day last"><span class="time">19-22</span>:&nbsp;Saturday Night Club Mix </ul></div><div class="day last"><h2>Sunday</h2><ul></ul></div><div class="day last"><span class="time">00-04</span>:&nbsp;Party cool down </ul></div><div class="day last"><span class="time">04-24</span>:&nbsp;Non-stop </ul></div>

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:
30.14 ms | 402 KiB | 8 Q