PHP - Concatenate Strings

0
8KB

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 switch Statement
The switch statement is used to perform different actions based on different...
Por PHP Tutorial 2024-05-17 07:47:56 0 4KB
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 8KB
Outro
PHP Math
PHP has a set of math functions that allows you to perform mathematical tasks on numbers. PHP...
Por PHP Tutorial 2024-05-17 07:39:09 0 6KB
Outro
PHP Operators
PHP Operators Operators are used to perform operations on variables and values. PHP divides the...
Por PHP Tutorial 2024-05-17 07:41:39 0 9KB
Outro
PHP Loops
In the following chapters you will learn how to repeat code by using loops in PHP. PHP Loops...
Por PHP Tutorial 2024-05-17 07:48:35 0 4KB
Sociallez https://sociallez.com