What does the following command do in PHP?
. $string // ($string is something which i declared in the program)
Taken alone, this is a syntax error. The dot . is the concatenation operator that converts its arguments to strings and concatenates them. For example,
.