We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents b19fdb9 + 36711fd commit d358e58Copy full SHA for d358e58
docs/guide-ja/usage-commands.md
@@ -18,7 +18,7 @@ $result = $redis->executeCommand('hmset', ['test_collection', 'key1', 'val1', 'k
18
サポートされているコマンドのそれぞれに対してショートカットが利用できますので、上記の代りに次のようにすることも出来ます。
19
20
```php
21
-$result = $redis->hmset(['test_collection', 'key1', 'val1', 'key2', 'val2']);
+$result = $redis->hmset('test_collection', 'key1', 'val1', 'key2', 'val2');
22
```
23
24
利用できるコマンドとそのパラメータについては、[http://redis.io/commands](http://redis.io/commands) のリストを参照してください。
0 commit comments