Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a variable that is being defined as

$var .= "value";

How does the use of the dot equal function?

share|improve this question
Used to append value in variable which already contains some value... – Deadlock Feb 13 at 4:52

3 Answers

up vote 3 down vote accepted

It's the concatenating assignment operator. It works similarly to:

$var = $var . "value";

I think $x .= differs from $x = $x . in that the former is in-place, but the latter re-assigns $x.

share|improve this answer
+1 I'm not sure why there was a down vote either. This is also backed by php.net/manual/en/language.operators.string.php – Marc Baumbach Feb 13 at 4:53
+1 too fast to answer. – Yogesh Suthar Feb 13 at 4:54
There are a lot of great answers here for this one, so I am awarding it to you since your answer already has two +1's. Thanks to everyone. – Presto Feb 13 at 5:09

This is for concatenation

$var  = "test";
$var .= "value";

echo $var; // this will give you testvalue
share|improve this answer

the "." operator is the string concatenation operator. and ".=" will concatenate strings.

Example:

$var = 1;
$var .= 20;

This is same as:

$var = 1 . 20;

the ".=" operator is a string operator, it first converts the values to strings; and since "." means concatenate / append, the result is the string "120".

share|improve this answer
Thanks, this is very helpful. – Presto Feb 13 at 5:09
@Presto How about awarding us with upvotes :P – AlphaMale Feb 13 at 5:12
sure, no problem :) – Presto Feb 13 at 5:19

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.