Jump to content

Sum of string


rashmi_k28

Recommended Posts

$number = 58;
while(strlen($number)!= 1){
    $numbers = str_split($number);
    $number = 0;
    foreach($numbers as $add){
        $number+=$add;
    }
}
echo $number;

 

Scott.

edit: guess i was beaten and with a better solution.

may never terminate? i can't think of a way off the top of my head for that?

 

Link to comment
Share on other sites

a quick observation about that math behind this

this will also work

$number = 58;
$number = $number%9;
if($number == 0){
    $number = 9;
}

only problem is if the original number is 0 it outputs 9

so might need another if if you are planning on using it with numbers including 9

 

Scott.

Link to comment
Share on other sites

you could go say

function get_number($number){
    while($number > 9) {
        $number = array_sum(str_split($number));
    }
    return $number;
}
$sum1 = get_number($number);

$bnum=get_number($split_date[0]);

 

Scott.

 

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.