PHP - Concatenate Strings
Сообщение 2024-05-17 07:30:24
0
8Кб
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.
Поиск
Категории
- Art
- Causes
- Crafts
- Dance
- Drinks
- Film
- Fitness
- Food
- Игры
- Gardening
- Health
- Главная
- Literature
- Music
- Networking
- Другое
- Party
- Religion
- Shopping
- Sports
- Theater
- Wellness
Больше
PHP Delete Array Items
Remove Array Item
To remove an existing item from an array, you can use...
PHP Introduction
PHP code is executed on the server.
What You Should Already Know
Before you continue you...
PHP if Operators
Comparison Operators
If statements usually contain conditions that compare two values....
PHP Installation
What Do I Need?
To start using PHP, you can:
Find a web host with PHP and MySQL support...
PHP Sorting Arrays
The elements in an array can be sorted in alphabetical or numerical order, descending or...