3v4l.org

run code in 300+ PHP versions simultaneously
<?php $obj = new stdClass; $obj->{'123'} = '456'; // defined property but unusable as obj->property; see below. print_r($obj); echo 'Via {\'123\'}: ' . $obj->{'123'},"\n"; if (isset($obj->{'123'})) { echo '123 is set',"\n";} // echo $obj->123; // Parse error: ...unexpected '123' (T_LNUMBER), expecting identifier (T_STRING) or variable (T_VARIABLE) or '{' or '$' $obj->{'a123'} = $obj->{'123'}; print_r($obj); echo 'Via Property a123: ' . $obj->a123,"\n"; // making a hash out of property a $obj->a["123"] = $obj->{'123'}; $obj->a["a123"] = $obj->{'a123'}; var_dump($obj); echo 'Via Property "a" and hashkey "123": ' . $obj->a["123"],"\n"; // contrast: $obj = (object)array('123' => '456'); // property 123 is invalid print_r($obj); echo $obj->{'123'},"\n"; // so "Undefined property: stdClass::$123"
Output for git.master, git.master_jit, rfc.property-hooks
stdClass Object ( [123] => 456 ) Via {'123'}: 456 123 is set stdClass Object ( [123] => 456 [a123] => 456 ) Via Property a123: 456 object(stdClass)#1 (3) { ["123"]=> string(3) "456" ["a123"]=> string(3) "456" ["a"]=> array(2) { [123]=> string(3) "456" ["a123"]=> string(3) "456" } } Via Property "a" and hashkey "123": 456 stdClass Object ( [123] => 456 ) 456

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.9 ms | 402 KiB | 8 Q