Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
$a = "3dollars";
$b = 20;
echo $a += $b;
print($a += $b);

Result:

23
43

I have a question from this calculation.$a is a string and $b is number.I am adding both and print using echo its print 23 and print using print return 43.How is it

share|improve this question

1 Answer

It casts '3dollars' as a number, getting $a = 3.

When you echo, you add 20, to $a, so it prints 23 and $a = 23.

Then, when you print, you again add 20, so now $a = 43.

share|improve this answer
How its getting 3 from "3dollar" ? – rynhe Jun 14 '12 at 4:54
That's just how PHP handles string to int conversions. It pick out the leading number and ignores the rest. Please read the link posted by Phpenix as a comment to your question. – xbonez Jun 14 '12 at 4:54
A more appropriate link: php.net/manual/en/… – xbonez Jun 14 '12 at 4:55
ok thanks xbonez & Phoenix – rynhe Jun 14 '12 at 4:56

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.