Skip to content

Instantly share code, notes, and snippets.

@iammerrick
Created January 21, 2011 20:29
Show Gist options
  • Save iammerrick/790359 to your computer and use it in GitHub Desktop.
Save iammerrick/790359 to your computer and use it in GitHub Desktop.
public function as_csv($columns)
{
foreach($this->as_array() as $item)
{
$csv .= implode(',', Arr::extract($item, $columns))."\n";
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment