There are no translations available.
There is only one string operator in PHP.
The concatenation operator (.) is used to put two string values together.
<?php
$txt1="Hello World!";
$txt2="What a nice day!";
echo $txt1 . " " . $txt2;
?>
Result:
Hello World! What a nice day!







