PHP - Concatenate Strings

0
8K

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.

 
 

 

 

Căutare
Categorii
Citeste mai mult
Alte
PHP Operators
PHP Operators Operators are used to perform operations on variables and values. PHP divides the...
By PHP Tutorial 2024-05-17 07:41:39 0 9K
Alte
PHP Update Array Items
Update Array Item To update an existing array item, you can refer to the index number for...
By PHP Tutorial 2024-05-17 08:02:49 0 7K
Alte
PHP Associative Arrays
PHP Associative Arrays Associative arrays are arrays that use named keys that you assign to...
By PHP Tutorial 2024-05-17 08:01:14 0 8K
Alte
PHP echo and print Statements
With PHP, there are two basic ways to get output: echo and print. In this...
By PHP Tutorial 2024-05-17 07:20:06 0 8K
Alte
PHP Variables Scope
PHP Variables Scope In PHP, variables can be declared anywhere in the script. The scope of a...
By PHP Tutorial 2024-05-17 07:18:52 0 10K
Sociallez https://sociallez.com