Concatenation of two Strings In PHP

admin_img Posted By Bajarangi soft , Posted On 03-12-2020

There are two string operators. The first is the concatenation operator (‘.‘), which returns the concatenation of its right and left arguments. The second is the concatenating assignment operator (‘.=‘), which appends the argument on the right side to the argument on the left side.

concatenation of strings

Examples 

Input : string1:  Hello
        string2 : World! 
Output : HelloWorld!


Input : string1: geeksfor
        string2: geeks
Output : geeksforgeeks
Code:
Example1

 

<?php 

// First String 
$a = 'Hello'; 

// Second String 
$b = 'World!'; 

// Concatenation Of String 
$c = $a.$b; 

// print Concatenate String 
echo " $c \n"; 
?> 

Code:
Example2

<?php 

// First String 
$fname = 'John'; 

// Second String 
$lname = 'Carter!'; 

// Concatenation Of String 
$c = $fname." ".$lname; 

// print Concatenate String 
echo " $c \n"; 
?> 

 

Code:
Example3

<?php 

// First String 
$a = 'Hello'; 

// now $a contains "HelloWorld!" 
$a. = "World!"; 

// Print The String $a 
echo " $a \n"; 
?> 
 

Related Post