3v4l.org

run code in 300+ PHP versions simultaneously
<?php $report = array( "03.05.2016" => array( "tasks" => array("group1" => "to change"), "start" => "8:00" , "end" => "16:00" ) ); $keys = array("03.05.2016","tasks","group1"); $value = "CHANGED"; print_r($report); $report[$keys[0]][$keys[1]][$keys[2]] = $value; print_r($report);
Output for git.master, git.master_jit, rfc.property-hooks
Array ( [03.05.2016] => Array ( [tasks] => Array ( [group1] => to change ) [start] => 8:00 [end] => 16:00 ) ) Array ( [03.05.2016] => Array ( [tasks] => Array ( [group1] => CHANGED ) [start] => 8:00 [end] => 16:00 ) )

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:
212.4 ms | 406 KiB | 5 Q