logo CodeStepByStep logo

reverse

Language/Type: PHP recursion string return

Write a recursive function named reverse that accepts a string parameter and returns that string with its characters in the opposite order. For example, the call of reverse("Hi you!") should return "!uoy iH" .

Constraints:

  • Do not declare any global variables.
  • Do not use any loops; you must use recursion.
  • Do not use any auxiliary data structures (e.g. arrays) or strings to solve this problem.
Function: Write a PHP function as described, not a complete program.

You must log in before you can solve this problem.

Log In

Need help?

Stuck on an exercise? Contact your TA or instructor.

If something seems wrong with our site, please

Is there a problem? Contact us.