PHP - Concatenate Strings
Postado 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.
Pesquisar
Categorias
- Art
- Causes
- Crafts
- Dance
- Drinks
- Film
- Fitness
- Food
- Jogos
- Gardening
- Health
- Início
- Literature
- Music
- Networking
- Outro
- Party
- Religion
- Shopping
- Sports
- Theater
- Wellness
Leia Mais
PHP switch Statement
The switch statement is used to perform different actions based on different...
PHP Nested if Statement
Nested If
You can have if statements inside if statements, this is...
PHP Shorthand if Statements
Short Hand If
To write shorter code, you can write if statements on one line....
PHP Introduction
PHP code is executed on the server.
What You Should Already Know
Before you continue you...
PHP Functions
The real power of PHP comes from its functions.
PHP has more than 1000 built-in functions, and...