PHP - Concatenate Strings
Posted 2024-05-17 07:30:24
0
8K
String Concatenation
To concatenate, or combine, two strings you can use the .
operator:
The result of the example above is HelloWorld
, without a space between the two words.
You can add a space character like this:
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:
Complete PHP String Reference
For a complete reference of all string functions, go to our complete PHP String Reference.
Buscar
Categorías
- Art
- Causes
- Crafts
- Dance
- Drinks
- Film
- Fitness
- Food
- Juegos
- Gardening
- Health
- Home
- Literature
- Music
- Networking
- Other
- Party
- Religion
- Shopping
- Sports
- Theater
- Wellness
Read More
PHP - Slicing Strings
Slicing
You can return a range of characters by using the substr() function.
Specify...
PHP $GLOBALS
$GLOBALS is an array that contains all global variables.
Global Variables
Global...
PHP Casting
Sometimes you need to change a variable from one data type into another, and sometimes you want a...
PHP Installation
What Do I Need?
To start using PHP, you can:
Find a web host with PHP and MySQL support...
PHP Loops
In the following chapters you will learn how to repeat code by using loops in PHP.
PHP Loops...