3v4l.org

run code in 300+ PHP versions simultaneously
<?php $dataset = array("a" > "one", "b" > "two", "c" => "three"); function foo($a, $b) { return false; } var_dump($dataset, "\n"); 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) { [0]=> bool(false) [1]=> bool(false) ["c"]=> string(5) "three" } string(1) " " bool(false) int(0) bool(false) bool(false) int(1) bool(false) bool(false) string(1) "c" string(5) "three" array(3) { [0]=> bool(false) [1]=> 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:
34.45 ms | 401 KiB | 8 Q