PHP - Concatenate Strings

0
9χλμ.

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 Numbers
In this chapter we will look in depth into Integers, Floats, and Number Strings. PHP Numbers...
από PHP Tutorial 2024-05-17 07:37:05 0 7χλμ.
άλλο
الثورة البلوكتشين وتحولاتها في الصناعات المختلفة
مقدمة: شهدت تقنية البلوكتشين ثورة هائلة في السنوات الأخيرة، حيث أصبحت لديها القدرة على تغيير...
από MOHAMED ATTALLAH 2024-05-14 14:03:03 0 8χλμ.
άλλο
PHP Variables
Variables are "containers" for storing information. Creating (Declaring) PHP Variables In...
από PHP Tutorial 2024-05-17 07:16:59 0 8χλμ.
άλλο
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 7χλμ.
άλλο
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 6χλμ.
Sociallez https://sociallez.com