I just discovered something. If I type this:
echo $var1 , " and " , $var2;
it is the same as:
echo $var1 . " and " . $var2;
What is the actual of concatenation operator in php? Using . or ,?
|
I just discovered something. If I type this:
it is the same as:
What is the actual of concatenation operator in php? Using |
|||||
|
|
The So your first example is calling echo with more than one parameter, and they are all being printed, vs. the second example where all the strings are being concatentated and that one big string is being printed. |
|||||||||||
|
|
The actual concatenation is |
|||
|
|
|
".". The other just writes several values independently, without actually concatenating the string. |
|||
|
|
|
"." concatenates, "," can only be used for also see: http://stackoverflow.com/questions/1466408/difference-between-and-in-php |
|||
|
|
|
In the first case you just echo 3 different strings. In the second case you concatenate the 3 strings and then echo the output. So the answer is that, in order to concatenate strings you should use the dot (.) |
|||
|
|
|
Using a comma doesn't actually concatenate the strings. See this answer to another question. |
|||
|
|
|
The "." is the correct concatenate operator. "echo" also accepts ",", treating it as if you are passing in a series of arguments to the "echo" method and then echoing each one. It's not truly concatenating the strings. |
|||
|
|
|
nop it's because echo could take more then one argument, it would do the print each arguments |
|||||||
|