Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save milesstewart88/5986041 to your computer and use it in GitHub Desktop.
Save milesstewart88/5986041 to your computer and use it in GitHub Desktop.
PHP - Function - Explode Multiple Params
<?php
function explodeMeTwice ($param) {
$id_pieces = explode("&", $param);
$new_piece = array();
foreach ($id_pieces as $piece) {
$the_piece = explode("=", $piece);
$new_piece[$the_piece[0]] = $the_piece[1];
}
return $new_piece;
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment