Search⌘ K
AI Features

String Operators

Explore how to use the two main string operators in PHP that enable joining strings together: concatenation and concatenation assignment. This lesson helps you grasp the difference between them and how to apply these operators to combine strings without extra variables, preparing you for more advanced string manipulations in PHP.

We'll cover the following...

There are only two string operators:

  • Concatenation (.):
  • Concatenation Assignment (.=)

Concatenation

...