Skip to content

Instantly share code, notes, and snippets.

@peter-wilkins
Created April 29, 2016 11:36
Show Gist options
  • Save peter-wilkins/33a0c06626f3018958bde67b9755a2ca to your computer and use it in GitHub Desktop.
Save peter-wilkins/33a0c06626f3018958bde67b9755a2ca to your computer and use it in GitHub Desktop.
$barf = '';
foreach ($array as $key => $value) {
if($value != NULL){
$barf .= ' ' . $key . ': ' . $value . PHP_EOL;
}
}
exit($barf);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment