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, ∼2527🔥, 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 troubleshoot the Orderer peer? The Docker container terminated by itself. You can follow this...
How To Access a Global Variable inside a Function? in PHP? By default, global variables are not acce...
How To Open Standard Output as a File Handle in PHP? If you want to open the standard output as a fi...
How to read Atom validation errors at w3.org? If your Atom feed has errors, the Atom validator at w3...