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, 1346👍, 0💬
Popular Posts:
How to add an API to an API product for internal testing on the Publisher Portal of an Azure API Man...
What is Azure API Management Developer Portal? Azure API Management Developer Portal is an Azure Web...
What is Azure API Management Publisher Dashboard? Azure API Management Publisher Dashboard is an Azu...
How to add request query string Parameters to my Azure API operation to make it more user friendly? ...
How To Loop through an Array without Using "foreach" in PHP? PHP offers the following functions to a...