<?php function test($i) { echo $i; if ($i < 5) { test($i + 1); } echo $i; } test(0);
Standard input is empty
012345543210
The brand new service which powers Ideone!
Widget for compiling and running the source code in a web browser!