php string concatenation code example

Example 1: php concat

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

echo $c; // hello world

Example 2: how to combine variables and text into a string php

<?php
$number = 8;
$txt = "the number is".$number.", ok?"; //Use a dot to combine
echo $txt;
?>

Example 3: php concatenate and add

this is inside for or foreach loop

# For concatenate use           .=
 $var .= 'string';

 # For adding the VALUES use    +=
 $var += 1;

Example 4: how to add two string in php

Remember dot .

Example 5: php concat variable and string

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

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

Example 6: 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.";

$finalString = $mystring1 . $mystring2 . $mystring3 . $mystring4 . $mystring5;
echo($finalString);
?>

Tags:

Sql Example