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 = null; echo "cParentID = null\n"; echo "\tvOriginal\n"; vOriginal($cParentID); echo "\tv1128\n"; v1128($cParentID); echo "\tv1229\n"; v1229($cParentID);
Output for 4.3.0 - 4.3.11, 4.4.0 - 4.4.9, 5.0.0 - 5.0.5, 5.1.0 - 5.1.6, 5.2.0 - 5.2.17, 5.3.0 - 5.3.29, 5.4.0 - 5.4.45, 5.5.0 - 5.5.36, 5.6.0 - 5.6.28, 7.0.0 - 7.0.20, 7.1.0 - 7.1.10, 7.2.0 - 7.2.33, 7.3.12 - 7.3.33, 7.4.0 - 7.4.33, 8.0.0 - 8.0.30, 8.1.0 - 8.1.27, 8.2.0 - 8.2.17, 8.3.0 - 8.3.4
cParentID = '1' vOriginal Add to array Recursive call v1128 Add to array Recursive call v1229 Add to array Recursive call cParentID = null vOriginal v1128 v1229

preferences:
253.02 ms | 406 KiB | 342 Q