PHP - Concatenate Strings

0
8KB

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.

 
 

 

 

Suche
Kategorien
Mehr lesen
Andere
الثورة البلوكتشين وتحولاتها في الصناعات المختلفة
مقدمة: شهدت تقنية البلوكتشين ثورة هائلة في السنوات الأخيرة، حيث أصبحت لديها القدرة على تغيير...
Von MOHAMED ATTALLAH 2024-05-14 14:03:03 0 7KB
Andere
PHP Installation
What Do I Need? To start using PHP, you can: Find a web host with PHP and MySQL support...
Von PHP Tutorial 2024-05-17 07:09:40 0 5KB
Andere
PHP Casting
Sometimes you need to change a variable from one data type into another, and sometimes you want a...
Von PHP Tutorial 2024-05-17 07:38:02 0 4KB
Andere
PHP Sorting Arrays
The elements in an array can be sorted in alphabetical or numerical order, descending or...
Von PHP Tutorial 2024-05-17 08:06:46 0 8KB
Andere
PHP if Statements
Conditional statements are used to perform different actions based on different conditions....
Von PHP Tutorial 2024-05-17 07:45:23 0 4KB
Sociallez https://sociallez.com