Skip to content

Instantly share code, notes, and snippets.

@halgatewood
Created January 25, 2017 20:41
Show Gist options
  • Select an option

  • Save halgatewood/20857fbac38d82351dea8c44ed92c197 to your computer and use it in GitHub Desktop.

Select an option

Save halgatewood/20857fbac38d82351dea8c44ed92c197 to your computer and use it in GitHub Desktop.
function implode_piped_string( $array )
{
if( !$array ) { return ""; }
if( !is_array($array) ) { return ""; }
return "|" . implode("|", array_filter(array_unique($array))) . "|";
}
function explode_piped_string( $str )
{
return array_filter(array_unique(explode("|", $str)));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment