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($output); // 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
Warning: Undefined variable $output in /in/1ZukY on line 6 Fatal error: Uncaught TypeError: count(): Argument #1 ($value) must be of type Countable|array, null given in /in/1ZukY:6 Stack trace: #0 {main} thrown in /in/1ZukY on line 6
Process exited with code 255.

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:
43.13 ms | 401 KiB | 8 Q