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:
- The Concatenation Operator (.)and
- The Combined Concatenation Assignment operator (=)
<?php $a = "Hello"; $b = $a ." PHP Home"; // now $b contains "Hello PHP Home " echo $b; ?>
Previous | Home | Next |