concat in ophp code example
Example 1: php concat
$a = "hello";
$b = "world";
$c = $a . " " . $b;
echo $c; // hello world
Example 2: php string concat
$name [] = ['abhi']
$a = "hello";
$b = "world";
$c = $a . " " . $b;
echo $c; // hello world
$name [] = ['abhi']