Why a full stop, “.” and not a plus symbol, “+”, for string concatenation in PHP?

前端 未结 12 1608
暖寄归人
暖寄归人 2020-12-09 01:54

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

12条回答
  •  离开以前
    2020-12-09 02:14

    Douglas Crockford thinks that + for Concatenation is a Bad Idea:

    JavaScript has its share of design errors, such as the overloading of + to mean both addition and concatenation with type coercion

提交回复
热议问题