Skip to content

Instantly share code, notes, and snippets.

@knorthfield
Created July 21, 2016 16:58
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 knorthfield/0e8f420be854ad19f8ef5dd172800d32 to your computer and use it in GitHub Desktop.
Save knorthfield/0e8f420be854ad19f8ef5dd172800d32 to your computer and use it in GitHub Desktop.
Make text from array with keys
$message = implode("\n", array_map(function ($v, $k) { return $k . ': ' . $v; }, $_POST, array_keys($_POST)));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment