CODE |
function happybirthday($how_old = 0) { if (is_integer($how_old) && $how_old > 0) { for ($i = 0; $i < $how_old; $i++) { echo "Happy Birthday Vadim <br />"; if($i%3 == 0) { happybirthday($i); } } } else { return false; } } happybirthday(30); |
1 пользователь, 3 гостя