PHP Programing language

adplus-dvertising
String Operator Examples
Previous Home Next

The PHP excels at working with text Strings, and that's true. In PHP there are two operators that work with strings:

  1. The Concatenation Operator (.)and
  2. The Combined Concatenation Assignment operator (=)

<?php
$a = "Hello";
$b = $a ." PHP Home";
// now $b contains "Hello PHP Home "
echo $b;
?>
output
Previous Home Next