3v4l.org

run code in 300+ PHP versions simultaneously
<?php $posts = array('post1', 'post2', 'post3', 'post4', 'post5', 'post6', 'post7', 'post8', 'post9'); // one foreach to divide posts $col = 1; foreach($posts as $post) { $cols[$col] = $post; $col = $col == 4 ? 1 : $col+1; } // then, another foreach for the html foreach($cols as $col) { // open col div echo "<div>"; foreach($col as $post) { // print post echo "$post,"; } // close col div echo "</div>"; }
Output for git.master, git.master_jit, rfc.property-hooks
<div> Warning: foreach() argument must be of type array|object, string given in /in/nov9k on line 13 </div><div> Warning: foreach() argument must be of type array|object, string given in /in/nov9k on line 13 </div><div> Warning: foreach() argument must be of type array|object, string given in /in/nov9k on line 13 </div><div> Warning: foreach() argument must be of type array|object, string given in /in/nov9k on line 13 </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:
48.49 ms | 402 KiB | 8 Q