3v4l.org

run code in 300+ PHP versions simultaneously
<?php $datos = array( "Nombre" => "Adrian", "Apellido" => "Madroñal", "Nacionalidad" => "Argentino", "Edad" => 28, "Telefono" => array( 'Casa:' => array('COD' => '011', 'TEL' => '45565486'), 'Celular:' => array('COD' => '011', 'TEL' => '5548846'), 'Trabajo:' => '32154846' ) ); foreach ($datos as $elementos => $data){ echo $elementos; if (is_array($data)){ foreach($data as $mas => $tel){ echo " ". $mas; if (is_array($tel)) foreach ($tel as $cod => $tels){ echo " ". $tels; } else { echo " ", $tel. "<br>"; } } } else { echo ": ". $data. "<br>"; } } ?>
Output for git.master, git.master_jit, rfc.property-hooks
Nombre: Adrian<br>Apellido: Madroñal<br>Nacionalidad: Argentino<br>Edad: 28<br>Telefono Casa: 011 45565486 Celular: 011 5548846 Trabajo: 32154846<br>

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