What are the differences between .= and += in PHP?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
Quite simply, "+=" is a numeric operator and ".=" is a string operator. Consider this example:
This is like writing:
The "+" or "+=" operator first converts the values to integers (and all strings evaluate to zero when cast to ints) and then adds them, so you get 0. If you do this:
This is the same as writing:
Since the "." operator is a string operator, it first converts the values to strings; and since "." means "concatenate," the result is the string "105". |
|||
|
|
|
The The |
|||||
|
|
. is for string concatenation and + is for addition. .= would append something to a string while += will add something to something. |
|||
|
|
