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.

 
 

 

 

Rechercher
Catégories
Lire la suite
Autre
PHP Comments
Comments in PHP A comment in PHP code is a line that is not executed as a part of the program....
Par PHP Tutorial 2024-05-17 07:14:49 0 6KB
Autre
PHP Indexed Arrays
PHP Indexed Arrays In indexed arrays each item has an index number. By default, the first item...
Par PHP Tutorial 2024-05-17 08:00:38 0 5KB
Autre
تطورات التعلم الآلي وتأثيرها على مستقبل العمل
مقدمة: في ظل التطورات السريعة للتكنولوجيا والابتكار، أصبح التعلم الآلي...
Par MOHAMED ATTALLAH 2024-05-14 13:56:58 0 7KB
Autre
PHP Delete Array Items
Remove Array Item To remove an existing item from an array, you can use...
Par PHP Tutorial 2024-05-17 08:06:22 0 7KB
Autre
PHP Access Arrays
Access Array Item To access an array item, you can refer to the index number for indexed arrays,...
Par PHP Tutorial 2024-05-17 08:02:32 0 8KB
Sociallez https://sociallez.com