Guest User

Untitled

a guest
Feb 18th, 2018
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.14 KB | None | 0 0
  1. function my_array_flip($params){
  2.  
  3. $mirror=array();
  4.  
  5. foreach($params as $key=>$value){
  6. $mirror[$value]=$key;
  7. }
  8.  
  9. return $mirror;
  10.  
  11. }
Add Comment
Please, Sign In to add comment