php string and variable concatenation code example

Example 1: php concat

$a = "hello";
$b = "world";
$c = $a . " " . $b;

echo $c; // hello world

Example 2: php concat variable and string

<?php
  $name = "Paul";	
  $age = 26;

  echo "My name is {$name}, I'm {$age} years old ";

Example 3: concatenate string php

<?php 

// First String 
$a = 'Hello'; 

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

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

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

Example 4: append variable into string php

echo "'$animal'";

Example 5: php string concat

$name [] = ['abhi']

Tags:

Php Example