The comma separated list can be created by using implode() function. The implode() is a builtin function in PHP and is used to join the elements of an array. implode() is an alias for PHP | join() function and works exactly same as that of join() function.
If we have an array of elements, we can use the implode() function to join them all to form one string. We basically join array elements with a string. Just like join() function , implode() function also returns a string formed from the elements of an array.
Syntax:
string implode( separator, array )
Return Type: The return type of implode() function is string. It will return the joined string formed from the elements of array.
Example 1: This example adds comma separator to the array elements.
<?php
$Array = array ( "GFG1" , "GFG2" , "GFG3" );
print_r( $Array );
$List = implode( ', ' , $Array );
print_r( $List );
?>
|
Output:
Array
(
[0] => GFG1
[1] => GFG2
[2] => GFG3
)
GFG1, GFG2, GFG3
Example 2:
<?php
$Array = array (0, 1, 2, 3, 4, 5, 6, 7);
print_r( $Array );
$List = implode( ', ' , $Array );
print_r( $List );
?>
|
Output:
Array
(
[0] => 0
[1] => 1
[2] => 2
[3] => 3
[4] => 4
[5] => 5
[6] => 6
[7] => 7
)
0, 1, 2, 3, 4, 5, 6, 7
PHP is a server-side scripting language designed specifically for web development. You can learn PHP from the ground up by following this PHP Tutorial and PHP Examples.
Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape,
GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out -
check it out now!
Last Updated :
31 Jul, 2021
Like Article
Save Article