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 $GLOBALS
$GLOBALS is an array that contains all global variables. Global Variables Global...
από PHP Tutorial 2024-05-17 08:08:27 0 4χλμ.
άλλο
PHP Variables Scope
PHP Variables Scope In PHP, variables can be declared anywhere in the script. The scope of a...
από PHP Tutorial 2024-05-17 07:18:52 0 3χλμ.
άλλο
PHP - Modify Strings
PHP has a set of built-in functions that you can use to modify strings. Upper Case...
από PHP Tutorial 2024-05-17 07:29:19 0 3χλμ.
άλλο
PHP - $_SERVER
$_SERVER $_SERVER is a PHP super global variable which holds information about headers,...
από PHP Tutorial 2024-05-17 08:08:50 0 4χλμ.
άλλο
PHP for Loop
The for loop - Loops through a block of code a specified number of times. The PHP...
από PHP Tutorial 2024-05-17 07:49:43 0 2χλμ.