Skip to content

Instantly share code, notes, and snippets.

@bluvertigo
Created May 17, 2017 15:07
Show Gist options
  • Select an option

  • Save bluvertigo/c91fc729e8f1c3083e05cbcfd0304732 to your computer and use it in GitHub Desktop.

Select an option

Save bluvertigo/c91fc729e8f1c3083e05cbcfd0304732 to your computer and use it in GitHub Desktop.
Stripping last comma from a foreach loop
<?php
$resultstr = array();
foreach ($results as $result) {
$resultstr[] = $result->name;
}
echo implode(",",$resultstr);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment