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, ∼2158🔥, 0💬
Popular Posts:
How To Loop through an Array without Using "foreach" in PHP? PHP offers the following functions to a...
How to Instantiate Chaincode on BYFN Channel? You can follow this tutorial to Instantiate Chaincode ...
How to login to Azure API Management Publisher Dashboard? If you have given access permission to an ...
What are "*..." and "**..." Wildcard Parameters in Function Definitions? If you want to define a fun...
How to use the "@(...)" expression in Azure API Policy? The "@(...)" expression in Azure API Policy ...