How will you concatenate two strings in PHP?
Submitted by: AdministratorTo concatenate two string variables together, use the dot (.) operator −
<?php
$string1="Global Guideline";
$string2="Interviews";
echo $string1 . " " . $string2;
?>
This will produce following result:
Global Guideline Interviews
Submitted by:
<?php
$string1="Global Guideline";
$string2="Interviews";
echo $string1 . " " . $string2;
?>
This will produce following result:
Global Guideline Interviews
Submitted by:
Read Online Sr. PHP Programmer Job Interview Questions And Answers
Top Sr. PHP Programmer Questions
☺ | What are the 3 scope levels available in PHP and how would you define them? |
☺ | What is the purpose of $_PHP_SELF variable in PHP? |
☺ | What is the purpse $_PHP_SELF variable? |
☺ | Can the value of a constant change during the script's execution? |
☺ | What is the purpose of _CLASS_ constant? |
Top Coding/Programming Categories
☺ | Python Interview Questions. |
☺ | OOP Interview Questions. |
☺ | Software engineering Interview Questions. |
☺ | PHP Interview Questions. |
☺ | VBA (Visual Basic for Applications) Interview Questions. |