3v4l.org

run code in 300+ PHP versions simultaneously
<?php $dias = array('Domingo','Lunes','Martes','Miercoles','Jueves','Viernes','Sabado'); $semana = array('Semana1','Semana2','Semana3','Semana4'); function mostrar_dias ($muestra){ for ($i=0; $i<count($muestra); $i++){ echo $muestra[$i]. "<br>"; } } mostrar_dias($dias); function mostrar_sem ($sem){ for ($i=0; $i<count($sem); $i++){ echo $sem[$i], "<br>"; } } mostrar_sem($semana); ?>
Output for git.master, git.master_jit, rfc.property-hooks
Domingo<br>Lunes<br>Martes<br>Miercoles<br>Jueves<br>Viernes<br>Sabado<br>Semana1<br>Semana2<br>Semana3<br>Semana4<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:
46.58 ms | 401 KiB | 8 Q