Why did the designers of PHP decide to use a full stop / period / "." as the string concatenation operator rather than the more usual plus symbol "+" ?
Is there any advantage to it, or any reason at all? Or did they just like to? :o)
|
Why did the designers of PHP decide to use a full stop / period / "." as the string concatenation operator rather than the more usual plus symbol "+" ? Is there any advantage to it, or any reason at all? Or did they just like to? :o)
| ||||
|
show 1 more comment
feedback
|
|
The most obvious reason would probably be that But, we can delve deeper into it and figure out why this was implemented in
^ As you can see, the Perhaps the reasoning goes lower level and is due to the boolean algebra of logic gates - It makes sense to have two separate operators, one for concatenation and one for addition - it's just unfortunate that these two can be mixed up due to other languages. | ||||
|
feedback
|
|
PHP's syntax is influenced by Perl, and In a weakly typed language there are advantages to having a different string concatenation and numeric addition operators: which one you use will influence which type the language coerces the variables to. As it happens, Perl 6 will use a tilde Perhaps, in Perl and PHP's early, non-Object-Oriented days, it seemed like as good a choice as any. Maybe the designers of both languages never envisaged them becoming strong OO languages. As for whether PHP will one day ditch its | |||||||||||||||||||
feedback
|
|
I am not a PHP expert, but, how else do you do differentiate that last two lines?
| |||||||||||||||||
feedback
|
|
Logically + is used for numbers. While a dot is used to concatenate two sentences (strings) in a paragraph for example. Hence dot is used to concatenate strings. So it is pretty logical i believe. It is better that way... | |||||||||||||
feedback
|
|
The use of the dot as string concatenation operator in PHP probably dates back to Perl. Remember that PHP once was nothing more than a bunch of Perl scripts. Also it makes sense to have distinct string concatenation and addition operators, especially in weakly-typed languages. There are enough pitfalls in PHP already to shoot yourself in the foot, you don't need to add another one. | |||
|
feedback
|
|
Douglas Crockford thinks that + for Concatenation is a Bad Idea:
| |||||||
feedback
|
|
I would too prefer to use a full stop instead of a plus sign because I usually associate + with mathematical equations. For Example This would be very confusing for both the compiler/interpreter and the developer. However the disadvantage to using full stop for concatenation operator is that it is just a dot on the screen and sometimes you can't see whether is it in the string or outside the string. | |||||||||||||
feedback
|
|
This doesn't answer the question, just wanted to share something. From PHP Manual: String Operators, someone posted this which I find rather interesting. Notice how the space plays a part in the output. Excerpt:
| |||
|
feedback
|
|
| |||||||
feedback
|
|
Here is a bit of historical context.
| |||||||||||
feedback
|
|
I guess it is so you can concatenate numbers with strings?
Since you don't declare variable types, with a + it could give a result of 100 instead of "hello100." | |||
|
feedback
|
.- the reasons why they wanted a distinct concatenation operator are clear enough (many languages do the same), but the choice of.of all things for this purpose seems to be a mystery. – Pavel Minaev Dec 8 '09 at 17:56