function shuffle_assoc( $array ) { $keys = array_keys( $array ); shuffle( $keys ); return array_merge( array_flip( $keys ) , $array ); }