PHP left string concatenation operator?
Solution 1:
Use the standard concatenation operator; no special assignment operator exists.
$a = "b" . $a;
Solution 2:
$a = "b" . $a
No shorthand for it that I know of.
Use the standard concatenation operator; no special assignment operator exists.
$a = "b" . $a;
$a = "b" . $a
No shorthand for it that I know of.