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){ if (is_array($data)){ foreach($data as $mas => $tel){ if (is_array($tel)) foreach ($tel as $cod => $tels){ echo $mas. $cod. $tels; echo "<br>"; } else { echo $mas. $tel. "<br>"; } } } else { echo $elementos. ": ". $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>CasaCOD011<br>CasaTEL45565486<br>CelularCOD011<br>CelularTEL5548846<br>Trabajo32154846<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:
55.45 ms | 401 KiB | 8 Q