w3resource

PHP Exercises: Compute the sum of the digits of a number

PHP: Exercise-45 with Solution

Write a PHP program to compute the sum of the digits of a number.

Sample Solution:

PHP Code:

<?php
// Define a function to calculate the sum of digits in a given number
function sum_of_digits($nums) {
    // Initialize a variable to store the sum of digits
    $digits_sum = 0;

    // Iterate through each digit in the number
    for ($i = 0; $i < strlen($nums); $i++) {
        // Add the current digit to the sum
        $digits_sum += $nums[$i];
    }

    // Return the sum of digits
    return $digits_sum;
}

// Test the function with example numbers
echo sum_of_digits("12345")."\n";
echo sum_of_digits("9999")."\n";

?>

Sample Output:

15                                                          
36

Flowchart:

Flowchart: Swap two variables

PHP Code Editor:

Have another way to solve this solution? Contribute your code (and comments) through Disqus.

Previous: Write a PHP program to print out the sum of pairs of numbers of a given sorted array of positive integers which is equal to a given number.
Next: Write a PHP program to find heights of the top three building in descending order from eight given buildings

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Follow us on Facebook and Twitter for latest update.