✅ Перевірена відповідь на це питання доступна нижче. Наші рішення, перевірені спільнотою, допомагають краще зрозуміти матеріал.
What will be the output of the following PHP code? (reminder: . is concatenation operator)
<?php$x = "test";$y = "this";$z = "also"; $x .= $y .= $z ;echo $x;echo $y;?>