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) { echo '<div class="day">'; echo '<h2>' . $day . '</h2>'; echo '<ul>'; foreach($day as $time=>$item) { echo '<li>'; echo '<span class="time">' . $time . '</span>&nbsp;'; echo $item; echo '</li>'; } echo '</ul>'; echo '</div>'; }
Output for git.master, git.master_jit, rfc.property-hooks
<div class="day"> Warning: Array to string conversion in /in/hv2q1 on line 16 <h2>Array</h2><ul><li><span class="time">Saturday</span>&nbsp; Warning: Array to string conversion in /in/hv2q1 on line 21 Array</li><li><span class="time">Sunday</span>&nbsp; Warning: Array to string conversion in /in/hv2q1 on line 21 Array</li></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:
65.27 ms | 401 KiB | 8 Q