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 Variables
Variables are "containers" for storing information.
Creating (Declaring) PHP Variables
In...
PHP Data Types
PHP Data Types
Variables can store data of different types, and different data types can do...
PHP - Concatenate Strings
String Concatenation
To concatenate, or combine, two strings you can use...
PHP Syntax
A PHP script is executed on the server, and the plain HTML result is sent back to the browser....