Skip to content

Instantly share code, notes, and snippets.

@jawdatls
Created May 11, 2015 08:27
Show Gist options
  • Save jawdatls/4b5840819b7eb67eb1f5 to your computer and use it in GitHub Desktop.
Save jawdatls/4b5840819b7eb67eb1f5 to your computer and use it in GitHub Desktop.
convert 1,2,3 keys to values
<?php
echo implode(', ',array_intersect_key(array(0=>'guest',1=>'user',2=>'admin'),array_flip(explode(',',$user->role))));
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment