Skip to content

Instantly share code, notes, and snippets.

@ilkeryilmaz
Created June 6, 2015 02:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ilkeryilmaz/580870050a6e864322e1 to your computer and use it in GitHub Desktop.
Save ilkeryilmaz/580870050a6e864322e1 to your computer and use it in GitHub Desktop.
Php array implode
$title = array('data', 'data', 'data');
$columns = implode(", ",array_keys($title));
$escaped_values = array_values($title);
$values = implode(", ", $escaped_values);
echo $values;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment