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"; } } function vFinal($cParentID) { if(!is_null($cParentID)) { echo "\t\tAdd to array\n"; echo "\t\tRecursive call\n"; } } //Page found, with parent $cParentID = '1'; echo "Page found, with parent: cParentID = "; var_dump($cParentID); echo "\tvOriginal\n"; vOriginal($cParentID); echo "\tv1128\n"; v1128($cParentID); echo "\tv1229\n"; v1229($cParentID); echo "\tvFinal\n"; vFinal($cParentID); //Page found, without parent $cParentID = 0; echo "Page found, without parent: cParentID = "; var_dump($cParentID); echo "\tvOriginal\n"; vOriginal($cParentID); echo "\tv1128\n"; v1128($cParentID); echo "\tv1229\n"; v1229($cParentID); echo "\tvFinal\n"; vFinal($cParentID); //Page not found $cParentID = null; echo "Page not found: cParentID = "; var_dump($cParentID); echo "\tvOriginal\n"; vOriginal($cParentID); echo "\tv1128\n"; v1128($cParentID); echo "\tv1229\n"; v1229($cParentID); echo "\tvFinal\n"; vFinal($cParentID);

preferences:
45.07 ms | 402 KiB | 5 Q