It’s the concatenating assignment operator. It works similarly to:
$var = $var . "value";
$x .= differs from $x = $x . in that the former is in-place, but the latter re-assigns $x.
It’s the concatenating assignment operator. It works similarly to:
$var = $var . "value";
$x .= differs from $x = $x . in that the former is in-place, but the latter re-assigns $x.