Skip to content
Related Articles
Open in App
Not now

Related Articles

PHP | Sum of digits of a number

Improve Article
Save Article
Like Article
  • Last Updated : 09 Mar, 2018
Improve Article
Save Article
Like Article

This is a simple PHP program where we need to calculate the sum of all digits of a number.
Examples:

Input : 711 
Output : 9

Input : 14785
Output : 25

In this program, we will try to accept a number in the form of a string and then iterate through the length of the string. While iterating we will extract the digit from each position and then add them to the previously extracted digit, thus getting the sum.




<?php
// PHP program to calculate the sum of digits
function sum($num) {
    $sum = 0;
    for ($i = 0; $i < strlen($num); $i++){
        $sum += $num[$i];
    }
    return $sum;
}
  
// Driver Code
$num = "711";
echo sum($num);
?>


Output:

9
My Personal Notes arrow_drop_up
Like Article
Save Article
Related Articles

Start Your Coding Journey Now!