Tools, FAQ, Tutorials:
Concatenating Two Strings in PHP
How To Concatenate Two Strings Together?
✍: FYIcenter.com
You can use the string concatenation operator (.) to join two strings into one. Here is a PHP script example of string concatenation:
<?php echo 'Hello ' . "world!\n"; ?>
This script will print:
Hello world!
⇒ Comparing Two Strings in PHP
⇐ Assigning a New Character in a String in PHP
2016-10-13, 2057🔥, 0💬
Popular Posts:
Where Is the Submitted Form Data Stored in PHP? When a user submit a form on your Web server, user e...
How To Read the Entire File into a Single String in PHP? If you have a file, and you want to read th...
How to use the JSON to XML Conversion Tool at freeformatter.com? If you want to try the JSON to XML ...
Where to find tutorials on Using Azure API Management Developer Portal? Here is a list of tutorials ...
How To Move Uploaded Files To Permanent Directory in PHP? PHP stores uploaded files in a temporary d...