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.
Cerca
Categorie
- Art
- Causes
- Crafts
- Dance
- Drinks
- Film
- Fitness
- Food
- Giochi
- Gardening
- Health
- Home
- Literature
- Music
- Networking
- Altre informazioni
- Party
- Religion
- Shopping
- Sports
- Theater
- Wellness
Leggi tutto
PHP - Concatenate Strings
String Concatenation
To concatenate, or combine, two strings you can use...
PHP - $_SERVER
$_SERVER
$_SERVER is a PHP super global variable which holds information about headers,...
PHP Multidimensional Arrays
In the previous pages, we have described arrays that are a single list of key/value pairs....
PHP Data Types
PHP Data Types
Variables can store data of different types, and different data types can do...
PHP Variables
Variables are "containers" for storing information.
Creating (Declaring) PHP Variables
In...