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, ∼2758🔥, 0💬
Popular Posts:
How to read RSS validation errors at w3.org? If your RSS feed has errors, the RSS validator at w3.or...
How To Access a Specific Character in a String? Any character in a string can be accessed by a speci...
How To Avoid the Undefined Index Error in PHP? If you don't want your PHP page to give out errors as...
Why am I getting this "Docker failed to initialize" error? After installing the latest version of Do...
What are "*..." and "**..." Wildcard Parameters in Function Definitions? If you want to define a fun...