Neden bu kod "sözdizimi hatası, beklenmedik '='" üretir?

0 Cevap php
$text . = '1 paragraph';
$text . = '2 paragraph';
$text . = '3 paragraph';
echo $text;

This code gives error syntax error, unexpected '='.

What is the problem?

0 Cevap