PHP - Concatenate Strings

0
3كيلو بايت

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.

 
 

 

 

البحث
الأقسام
إقرأ المزيد
أخرى
PHP Multiline Comments
Multi-line Comments Multi-line comments start with /* and end with */. Any text...
بواسطة PHP Tutorial 2024-05-17 07:15:48 0 2كيلو بايت
أخرى
PHP - Escape Characters
Escape Character To insert characters that are illegal in a string, use an escape character. An...
بواسطة PHP Tutorial 2024-05-17 07:32:36 0 4كيلو بايت
أخرى
PHP Strings
A string is a sequence of characters, like "Hello world!". Strings Strings in PHP are...
بواسطة PHP Tutorial 2024-05-17 07:28:17 0 3كيلو بايت
أخرى
PHP Constants
Constants are like variables, except that once they are defined they cannot be changed or...
بواسطة PHP Tutorial 2024-05-17 07:39:53 0 2كيلو بايت
أخرى
PHP Delete Array Items
Remove Array Item To remove an existing item from an array, you can use...
بواسطة PHP Tutorial 2024-05-17 08:06:22 0 3كيلو بايت