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.

Possible Duplicate:
Reference - What does this symbol mean in PHP?

The code example

{
$n1 = ucfirst(strtolower($n1));
$n2 = ucfirst(strtolower($n2));
$n3 = ucfirst(strtolower($n3));
return $n1 . " " . $n2 . " " . $n3;
}

My book says the code will display

William Henry Gates (each name is the value of the variables)

So what do the . in between the quotes and the next variable do? I must have read over it, and I look back for it, but I couldn't find it. Thanks.

share|improve this question

marked as duplicate by John Conde, Tadeck, vascowhite, Kev Sep 19 '12 at 21:19

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

3 Answers

up vote 4 down vote accepted

It concatenates (merges) strings

share|improve this answer
Ah I see. Simple enough. Thanks! – PolarisUser Sep 19 '12 at 0:52

Concatenation

Since you are trying to return the variable $n1 with a space $n2 with another space and $n3

You can also check String Operator from PHP Manual for more information about this

One of the example to use the . operator or refer to String Operator from PHP manual

<?php
 $a = "Hello ";
 $b = $a . "World!"; // now $b contains "Hello World!"

 $a = "Hello ";
 $a .= "World!";     // now $a contains "Hello World!"
?>
share|improve this answer

The . operator concatenates strings.

The code converts $n1, $n2, and $n3 into lowercase, then capitalizes the first letter, then combines all three names together with a space between each name.

share|improve this answer

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