You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
public function hmget($key, ...$dictionary)
{
if (count($dictionary) === 1) {
$dictionary = $dictionary[0];
}
return array_values($this->command('hmget', [$key, $dictionary]));
}
I don't understand why hmget use array_values. It makes me unable to get the mapping between name and value. I have to substitute 'command' for 'hmget' like
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
Uh oh!
There was an error while loading. Please reload this page.
-
This is source code:
I don't understand why hmget use array_values. It makes me unable to get the mapping between name and value. I have to substitute 'command' for 'hmget' like
Beta Was this translation helpful? Give feedback.
All reactions