vote up 0 vote down star

Is there a quick way ( existing method) Concatenate array element into string with ',' as the separator? Specifically I am looking for a single line of method replacing the following routine:

    //given ('a','b','c'), it will return 'a,b,c'
private static function ConstructArrayConcantenate($groupViewID)
{
	$groupIDStr='';
		foreach ($groupViewID as $key=>$value)
	{
		$groupIDStr=$groupIDStr.$value;
		if($key!=count($groupViewID)-1)
		  $groupIDStr=$groupIDStr.',';

	}		

	return $groupIDStr;
}
flag

49% accept rate

6 Answers

vote up 8 vote down check

This is exactly what the PHP implode() function is for.

Try

$groupIDStr = implode(',', $groupViewID);
link|flag
vote up 5 vote down

You want implode:

implode(',', $array);

http://us2.php.net/implode

link|flag
vote up 2 vote down

implode()

$a = array('a','b','c');
echo implode(",", $a); // a,b,c
link|flag
vote up 2 vote down
$arr = array('a','b','c');
$str = join(',',$arr);

join is an alias for implode, however I prefer it as it makes more sense to those from a Java or Perl background (and others).

link|flag
Even though join is correct as well, I think most PHP developers are used to seeing implode instead. :) – cvondrick Sep 7 at 0:54
@Carl Vondrick - all the more reason to use join() IMO, but I can understand that PHP developers would prefer to use implode(), as it does sound cooler. – karim79 Sep 7 at 0:57
vote up 0 vote down

Oops, I meant implode...

link|flag
explode() does the opposite. – Artelius Sep 7 at 0:53
vote up 0 vote down

implode() function is the best way to do this. Additionally for the shake of related topic, you can use explode() function for making an array from a text like the following:

$text = '18:09:00'; $t_array = explode(':', $text);

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.