PHP - Concatenate Strings

0
3KB

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.

 
 

 

 

Rechercher
Catégories
Lire la suite
Autre
PHP Sorting Arrays
The elements in an array can be sorted in alphabetical or numerical order, descending or...
Par PHP Tutorial 2024-05-17 08:06:46 0 3KB
Autre
PHP if Operators
Comparison Operators If statements usually contain conditions that compare two values....
Par PHP Tutorial 2024-05-17 07:45:46 0 2KB
Autre
PHP Shorthand if Statements
Short Hand If To write shorter code, you can write if statements on one line....
Par PHP Tutorial 2024-05-17 07:47:03 0 2KB
Autre
PHP Continue
The continue statement can be used to jump out of the current iteration of a loop, and...
Par PHP Tutorial 2024-05-17 07:52:32 0 2KB
Autre
PHP while Loop
The while loop - Loops through a block of code as long as the specified condition is...
Par PHP Tutorial 2024-05-17 07:48:58 0 2KB