PHP - Concatenate Strings
نشر بتاريخ 2024-05-17 07:30:24
0
9كيلو بايت
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 Shorthand if Statements
Short Hand If
To write shorter code, you can write if statements on one line....
PHP - $_SERVER
$_SERVER
$_SERVER is a PHP super global variable which holds information about headers,...
PHP Variables Scope
PHP Variables Scope
In PHP, variables can be declared anywhere in the script.
The scope of a...
PHP Break
The break statement can be used to jump out of different kind of loops.
Break in For...
PHP Installation
What Do I Need?
To start using PHP, you can:
Find a web host with PHP and MySQL support...