Q:

Write a PHP program to reverse the digits of an integer

0

Write a PHP program to reverse the digits of an integer.

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

<?php
function reverse_integer($n)
{
    $reverse = 0;
    while ($n > 0)
      {
        $reverse = $reverse * 10;
        $reverse = $reverse + $n % 10;
        $n = (int)($n/10);
      }
     return $reverse;
}   
print_r(reverse_integer(1234)."\n");
print_r(reverse_integer(23)."\n");
?>

Sample Output:

4321                                                        
32

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Similar questions


need a help?


find thousands of online teachers now