PHP - Concatenate Strings

0
3K

String Concatenation

To concatenate, or combine, two strings you can use the . operator:

ExampleGet your own PHP Server

$x = "Hello";
$y = "World";
$z = $x . $y;
echo $z;
Try it Yourself »

The result of the example above is HelloWorld, without a space between the two words.

You can add a space character like this:

Example

$x = "Hello";
$y = "World";
$z = $x . " " . $y;
echo $z;
Try it Yourself »

An easier and better way is by using the power of double quotes.

By surrounding the two variables in double quotes with a white space between them, the white space will also be present in the result:

Example

$x = "Hello";
$y = "World";
$z = "$x $y";
echo $z;
Try it Yourself »

Complete PHP String Reference

For a complete reference of all string functions, go to our complete PHP String Reference.

 
 

 

 

Pesquisar
Categorias
Leia Mais
Outro
PHP Functions
The real power of PHP comes from its functions. PHP has more than 1000 built-in functions, and...
Por PHP Tutorial 2024-05-17 07:53:06 0 2K
Outro
PHP Sorting Arrays
The elements in an array can be sorted in alphabetical or numerical order, descending or...
Por PHP Tutorial 2024-05-17 08:06:46 0 3K
Outro
PHP echo and print Statements
With PHP, there are two basic ways to get output: echo and print. In this...
Por PHP Tutorial 2024-05-17 07:20:06 0 2K
Outro
PHP $GLOBALS
$GLOBALS is an array that contains all global variables. Global Variables Global...
Por PHP Tutorial 2024-05-17 08:08:27 0 4K
Outro
PHP if...else Statements
PHP - The if...else Statement The if...else statement executes some code if a...
Por PHP Tutorial 2024-05-17 07:46:12 0 2K