3v4l.org

run code in 300+ PHP versions simultaneously
<?php $mycontent=array( "<p>Miller</p> <p>23 South Street</p> <p>likes steak medium</p>", "<p>Smith</p><p>14 West Drive</p> <p>doesn#t drink milk</p>", "<p>Festinger</p> <p>3 East Avenue</p> <p>warches evening news every day</p>"); $h = "<table>"; // we are going to build the table in $h $maxcount = count($mycontent); // get the number of values within the array for ($i = 0;$i < $maxcount;$i++) { // counting $i up from 0 to $maxcount -1 ... $h.= "<tr><td>{$mycontent[$i]}</td></tr>"; // build row } $h.= "</table>"; // close the table echo $h; // echo it
Output for git.master, git.master_jit, rfc.property-hooks
<table><tr><td><p>Miller</p> <p>23 South Street</p> <p>likes steak medium</p></td></tr><tr><td><p>Smith</p><p>14 West Drive</p> <p>doesn#t drink milk</p></td></tr><tr><td><p>Festinger</p> <p>3 East Avenue</p> <p>warches evening news every day</p></td></tr></table>

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