3v4l.org

run code in 300+ PHP versions simultaneously
<?php $a = array(); $a["foo"] = "bar"; $a["baz"] = "quux"; $a["100"] = "zimbabwe"; echo "\$a is an associative map with some things in it: "; var_export($a); echo "\n\n"; $keys = array_keys($a); echo "It has these keys: "; var_export($keys); echo "\n\n"; echo "But there was a silent string-int coercion when we added an object to the container using a string key that looked like an int\n\n"; var_dump( is_string($keys[2]) );
Output for git.master, git.master_jit, rfc.property-hooks
$a is an associative map with some things in it: array ( 'foo' => 'bar', 'baz' => 'quux', 100 => 'zimbabwe', ) It has these keys: array ( 0 => 'foo', 1 => 'baz', 2 => 100, ) But there was a silent string-int coercion when we added an object to the container using a string key that looked like an int bool(false)

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