how to concatenate two strings in php code example
Example 1: php concat
$a = "hello";
$b = "world";
$c = $a . " " . $b;
echo $c;
Example 2: php append string
<?php
$a = "Hello ";
$b = $a . "World!";
$a = "Hello ";
$a .= "World!";
?>
Example 3: php concat variable and string
<?php
$name = "Paul";
$age = 26;
echo "My name is {$name}, I'm {$age} years old ";
Example 4: concatenate string php
<?php
$a = 'Hello';
$b = 'World!';
$c = $a.$b;
echo " $c \n";
?>
Example 5: String Concatenation in PHP
phpCopy<?php
$mystring1 = "This is the first string. ";
$mystring2 = "This is the second string. ";
$mystring3 = "This is the third string. ";
$mystring4 = "This is the fourth string. ";
$mystring5 = "This is the fifth string.";
$mystring1 .= $mystring2 .= $mystring3 .= $mystring4 .= $mystring5;
echo($mystring1);
?>
Example 6: php string concat
$name [] = ['abhi']