PHP - Concatenate Strings

0
8K

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.

 
 

 

 

Search
Categories
Read More
Other
PHP - $_SERVER
$_SERVER $_SERVER is a PHP super global variable which holds information about headers,...
By PHP Tutorial 2024-05-17 08:08:50 0 7K
Other
PHP Multidimensional Arrays
In the previous pages, we have described arrays that are a single list of key/value pairs....
By PHP Tutorial 2024-05-17 08:07:20 0 7K
Other
PHP Data Types
PHP Data Types Variables can store data of different types, and different data types can do...
By PHP Tutorial 2024-05-17 07:27:24 0 5K
Other
PHP Delete Array Items
Remove Array Item To remove an existing item from an array, you can use...
By PHP Tutorial 2024-05-17 08:06:22 0 7K
Other
PHP - Slicing Strings
Slicing You can return a range of characters by using the substr() function. Specify...
By PHP Tutorial 2024-05-17 07:31:23 1 8K
Sociallez https://sociallez.com