3v4l.org

run code in 300+ PHP versions simultaneously
<?php class Calculator { public function calc($v) { return $v + 1; } } class MyCalculator extends Calculator { public function calc($v1, $v2 = 0) { return parent::calc($v1) + $v2; } } function calcArray(array $values, Calculator $calculator) { foreach ($values as &$v) { $v = $calculator->calc($v, $v); // Second aregument is wrong !! } return $values; } $ar = [1,2,3]; var_dump(calcArray($ar, new Calculator)); // ignores the second argument var_dump(calcArray($ar, new MyCalculator)); // UNEXPECTED: the second argument will be used
Output for git.master, git.master_jit, rfc.property-hooks
array(3) { [0]=> int(2) [1]=> int(3) [2]=> int(4) } array(3) { [0]=> int(3) [1]=> int(5) [2]=> int(7) }

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:
116.2 ms | 405 KiB | 5 Q