3v4l.org

run code in 300+ PHP versions simultaneously
<?php namespace Capstone\Container; class Registry { protected $map; /** * @param \arrayAccess|array|null $map */ function __construct( &$map = null ) { if( $map === null ) { $map = array(); } $this->map =& $map; } function set($key, $value){ $this->map[$key] = $value; } function setMany(array $map){ foreach($map as $key => $value){ $this->set($key, $value); } } function get($key){ if(array_key_exists($key, $this->map)){ return $this->map[$key]; } return null; } function has($key){ return array_key_exists($key, $this->map); } function length(){ return count($this->map); } function getIterator(){ return new \ArrayIterator($this->map); } } $bob = array('x' => 'y'); $bob_reg = new Registry($bob); $bob_reg->set('ted', 'bob'); print_r($bob); echo $bob_reg->get('ted');
Output for git.master, git.master_jit, rfc.property-hooks
Array ( [x] => y [ted] => bob ) bob

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