luizmelao Posted August 31, 2012 Report Share Posted August 31, 2012 Boa noite.Estou com uma dúvida...........Tenho uma variavel com seu conteudo:$var=101;Eu queria pegar essa variavel e somar o conteudo dela............1+0+1= 2Como posso fazer isso??? tentei fazer com explode e tal, mas não deu certo!!! Quote Link to comment Share on other sites More sharing options...
0 ESerra Posted September 1, 2012 Report Share Posted September 1, 2012 $var=101; $total = strlen($var); $soma = 0; for($i=0;$i<$total;$i++{ $soma += $var[$i]; } Quote Link to comment Share on other sites More sharing options...
Question
luizmelao
Boa noite.
Estou com uma dúvida...........
Tenho uma variavel com seu conteudo:
$var=101;
Eu queria pegar essa variavel e somar o conteudo dela............
1+0+1
= 2
Como posso fazer isso??? tentei fazer com explode e tal, mas não deu certo!!!
Link to comment
Share on other sites
1 answer to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.