Which below operator is used for concatenation in php?

► MCQ Exam ON : Monoclonal Antibodies

Which below operator is used for concatenation in php?

Which operator is used to concatenate two strings in php?


1)   plus operator ( )
2) dot operator (.)
3)   None of above
4)   and (&)
5)   NULL

(Complaint Here As Incorrect)

Home  »  PHP   »   PHP 8 Concatenate String, Variable and Arrays Examples

In this tutorial, we are going to learn how to concatenate String, Variable and Arrays in PHP. The concatenate term in PHP refers to joining multiple strings into one string; it also joins variables as well as the arrays.

In PHP, concatenation is done by using the concatenation operator (".") which is a dot. The php developers widely use the concatenation operator, it helps them to join string in their day to the day programming task.

Understand PHP Concatenate Operator

PHP offers two types of string operators to deal with string concatenation.

OperatorDetail
(".") The dot concatenation operator in PHP concatenate its right and left arguments.
('.=') This second concatenation operator helps in appending the right side argument to the left side argument.

Concatenate Two Strings in PHP

You can combine two strings in PHP using the concatenate operator, check out the code example below:

<?php
  $string1 = 'John';
  $string2 = 'Doe';
  $name_str = $string1 . ' ' . $string2;
  echo $name_str;
?>
// Result: John Doe

Concatenate Two Variables in PHP

In this php tutorial, we will now learn to concatenate two variables, in the following example we have declared the two variables $var1 and $var2. Then in the $JOIN_VAR variable we are adding the content of both the variables:

<?php
    $var_1 =  "Tony Stark";
    $var_2 = "MCU";
    $JOIN_VAR = $var_1." ".$var_2." ";
    echo $JOIN_VAR;
?>

Output will be:

// Result: Tony Stark MCU 

Concatenating variable with string in PHP

In this example we are Concatenating single variable with string:

<?php
  $var = "Hello";
  echo $var.' World';
?>
// Result: Hello World

Concatenate Two Arrays in PHP

In this example, we will learn how to merge or join two arrays using the PHP array_merge() method. This method will allow us to combine 2 arrays data into one array.

<?php
   $myArr1 = array(1, "tv" => "ac", 2, "washing machine", 3);
   $myArr2 = array("word", "abc", "vegetable" => "tomato", "state" => "washington dc");
 
   // Join arrays
  $output = array_merge($myArr1, $myArr2);
  print_r($output);
?>

Check out the result below:

Array
(
    [0] => 1
    [tv] => ac
    [1] => 2
    [2] => washing machine
    [3] => 3
    [4] => word
    [5] => abc
    [vegetable] => tomato
    [state] => washington dc
)

Finally, we are done with PHP concatenating String, Variable and Arrays tutorials, I have tried to explain almost every possible scenario; however, If i have missed anything you can visit official PHP site to explore more.

Which operator is used for concatenation in PHP?

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.

What is concatenation in PHP?

The PHP concatenation operator (.) is used to combine two string values to create one string. .= Concatenation assignment.

Which operator is used in concatenation?

You can use the concatenation operator ( || ) to concatenate two expressions that evaluate to character data types or to numeric data types.

Which symbol is used for concatenation?

The one remaining operator that can be applied to one-dimensional arrays is the concatenation operator (“&”), which joins two array values end to end. For example, when applied to bit vectors, it produces a new bit vector with length equal to the sum of the lengths of the two operands.