PHP - Append values to a variable using .=

by
Jeremy Canfield |
Updated: October 10 2022
| PHP articles
Let's say you have a variable that contains fruit.
$fruit = "banana apple orange grape";
The .= operator can be used to append values to the end of the variable. In this example, pineapple will be appended to the $fruit variable.
$fruit .= "pineapple";
The variable can be printed.
echo $fruit;
The original values in the variable plus pineapple will be printed.
banana apple orange grape pineapple
Did you find this article helpful?
If so, consider buying me a coffee over at