PHP - Concatenate Strings

0
8χλμ.

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 Comments
Comments in PHP A comment in PHP code is a line that is not executed as a part of the program....
από PHP Tutorial 2024-05-17 07:14:49 0 6χλμ.
άλλο
PHP Break
The break statement can be used to jump out of different kind of loops. Break in For...
από PHP Tutorial 2024-05-17 07:50:37 0 5χλμ.
άλλο
PHP Nested if Statement
Nested If You can have if statements inside if statements, this is...
από PHP Tutorial 2024-05-17 07:47:26 0 4χλμ.
άλλο
PHP Shorthand if Statements
Short Hand If To write shorter code, you can write if statements on one line....
από PHP Tutorial 2024-05-17 07:47:03 0 4χλμ.
άλλο
PHP Operators
PHP Operators Operators are used to perform operations on variables and values. PHP divides the...
από PHP Tutorial 2024-05-17 07:41:39 0 9χλμ.
Sociallez https://sociallez.com