Join() function in PHP || PHP Join Function
×


join() function in PHP

1916

Join() function of PHP is used to merge all array items into a single string. It is an inbuilt function of PHP. The working of this function is the same as the working of implode() PHP function.

The return type of this function is string means it always returns a string corresponding to a given PHP array.

Syntax:

join($separator, $array);

here,

  • $separator is a separator which used to separate array items in resultant string.
  • $array is a PHP array.

Example:

<?php
$arr=array("Mango","Banana","Orange","Apple");
$str1=join(",",$arr); // join array items by comma
$str2=join("-",$arr); // join array items by -
$str3=join(" ",$arr); // join array items by space
echo "$str1 <br>";
echo "$str2 <br>";
echo "$str3 <br>";
?>

Output:



Best WordPress Hosting


Share:


Discount Coupons

Get a .COM for just $6.98

Secure Domain for a Mini Price



Leave a Reply


Comments
    Waiting for your comments