String Operators . and .

suggest change

There are only two string operators:

$a = "a";
$b = "b";
$c = $a . $b; // $c => "ab"
$a = "a";
$a .= "b"; // $a => "ab"

Feedback about page:

Feedback:
Optional: your email if you want me to get back to you:



Table Of Contents