3v4l.org

run code in 300+ PHP versions simultaneously
<?php function &Website_Index($keys=array(), $value=NULL, &$index=NULL) { static $indexed = array(); if($keys===NULL){$indexed=$value;}#echo "MANUALLY_LOADED_ARRAY";} #if($indexed===NULL){$indexed=API_Array(Website_Index_Array_Path);}#echo "AUTO_LOADED_FILE";}#fastest = include(...); ??? pass filename!!! #if($indexed===NULL){$indexed=API_Array(Website_Index_Array_Path);}#echo "AUTO_LOADED_FILE";}#fastest = include(...); ??? pass filename!!! if($index===NULL){$index=&$indexed;} # by reference! if(count($keys)>0) { $key = array_shift($keys); if(isset($index[$key])){ if(count($keys)>0){ if(is_array($index[$key])){ return Website_Index($keys, $value, $index[$key]); } else{ return NULL; } }else{ if($value!==NULL){ return $index[$key] = $value;} else{ return $index[$key]; } } } else{ return NULL; } } return $index; } ?>
Output for git.master, git.master_jit, rfc.property-hooks

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