3v4l.org

run code in 300+ PHP versions simultaneously
<?php error_reporting(0); function vOriginal($cParentID) { if ($cParentID > -1) { if($cParentID != $stopAt) { echo "\t\tAdd to array\n"; } echo "\t\tRecursive call\n"; } } function v1128($cParentID) { if ($cParentID > 0) { echo "\t\tAdd to array\n"; echo "\t\tRecursive call\n"; } } function v1229($cParentID) { if ($cParentID > -1) { echo "\t\tAdd to array\n"; echo "\t\tRecursive call\n"; } } $cParentID = '1'; echo "cParentID = '1'\n"; echo "\tvOriginal\n"; vOriginal($cParentID); echo "\tv1128\n"; v1128($cParentID); echo "\tv1229\n"; v1229($cParentID); $cParentID = '0'; echo "cParentID = '0'\n"; echo "\tvOriginal\n"; vOriginal($cParentID); echo "\tv1128\n"; v1128($cParentID); echo "\tv1229\n"; v1229($cParentID); $cParentID = ''; echo "cParentID = ''\n"; echo "\tvOriginal\n"; vOriginal($cParentID); echo "\tv1128\n"; v1128($cParentID); echo "\tv1229\n"; v1229($cParentID); $cParentID = false; $cParentID = null; echo "cParentID = null\n"; echo "\tvOriginal\n"; vOriginal($cParentID); echo "\tv1128\n"; v1128($cParentID); echo "\tv1229\n"; v1229($cParentID);
Output for git.master, git.master_jit, rfc.property-hooks
cParentID = '1' vOriginal Add to array Recursive call v1128 Add to array Recursive call v1229 Add to array Recursive call cParentID = '0' vOriginal Add to array Recursive call v1128 v1229 Add to array Recursive call cParentID = '' vOriginal v1128 v1229 cParentID = null vOriginal v1128 v1229

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:
47.21 ms | 402 KiB | 8 Q