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, 1745🔥, 0💬
Popular Posts:
How to start Visual Studio Command Prompt? I have Visual Studio 2017 Community version with Visual C...
How To Read Data from Keyboard (Standard Input) in PHP? If you want to read data from the standard i...
How to register and get an application ID from Azure AD? The first step to use Azure AD is to regist...
How To Control Vertical Alignment? By default, text in all table cells are aligned to the top vertic...
How To Set session.gc_divisor Properly in PHP? As you know that session.gc_divisor is the frequency ...