3v4l.org

run code in 300+ PHP versions simultaneously
<?php $dataset = array("a" => "one", "b" => "two", "c" => "three"); var_dump($dataset); print(PHP_EOL); function foo($a, $b) { return false; } foreach($dataset as $key => $val) { $dataset[$key] = foo($val, 'bar'); var_dump($dataset[$key], $key, $val); print(PHP_EOL); } var_dump($dataset); print(PHP_EOL);
Output for git.master, git.master_jit, rfc.property-hooks
array(3) { ["a"]=> string(3) "one" ["b"]=> string(3) "two" ["c"]=> string(5) "three" } bool(false) string(1) "a" string(3) "one" bool(false) string(1) "b" string(3) "two" bool(false) string(1) "c" string(5) "three" array(3) { ["a"]=> bool(false) ["b"]=> bool(false) ["c"]=> 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:
42.17 ms | 402 KiB | 8 Q