PHP - Concatenate Strings
Δημοσιευμένα 2024-05-17 07:30:24
0
3χλμ.
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 $GLOBALS
$GLOBALS is an array that contains all global variables.
Global Variables
Global...
PHP Variables Scope
PHP Variables Scope
In PHP, variables can be declared anywhere in the script.
The scope of a...
PHP - Modify Strings
PHP has a set of built-in functions that you can use to modify strings.
Upper Case...
PHP - $_SERVER
$_SERVER
$_SERVER is a PHP super global variable which holds information about headers,...
PHP for Loop
The for loop - Loops through a block of code a specified number of times.
The PHP...