PHP - Concatenate Strings

0
9KB

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 Global Variables - Superglobals
Superglobals were introduced in PHP 4.1.0, and are built-in variables that are always available...
Par PHP Tutorial 2024-05-17 08:08:10 0 11KB
Autre
PHP Sorting Arrays
The elements in an array can be sorted in alphabetical or numerical order, descending or...
Par PHP Tutorial 2024-05-17 08:06:46 0 8KB
Autre
PHP Variables Scope
PHP Variables Scope In PHP, variables can be declared anywhere in the script. The scope of a...
Par PHP Tutorial 2024-05-17 07:18:52 0 11KB
Autre
PHP Nested if Statement
Nested If You can have if statements inside if statements, this is...
Par PHP Tutorial 2024-05-17 07:47:26 0 4KB
Autre
PHP Update Array Items
Update Array Item To update an existing array item, you can refer to the index number for...
Par PHP Tutorial 2024-05-17 08:02:49 0 7KB
Sociallez https://sociallez.com