Jump to content

Imploding Array


soma56

Recommended Posts

I've figure out how to echo my array:

 

<?PHP

foreach(array_unique($matches[0]) as $type) { 
		echo $type . "<br />";
		} 
?>

 

But my problem is exporting to csv. From what I've been reading you must first implode the array and then use the fputcsv function.

 

When I attempt to implode I simply get the word "Array"

 

<?PHP
$array = array("$matches");
$comma_separated = implode(",", $array);

echo $comma_separated;
?>

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.