Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/phpredis/phpredis.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Grunder <michael.grunder@gmail.com>2016-07-20 22:21:02 +0300
committerGitHub <noreply@github.com>2016-07-20 22:21:02 +0300
commit1343d9b12f3fd039629e40ce582e892537d55e3c (patch)
tree08c1fbb9af05e6ef462973ce593423edf6884103 /README.markdown
parentff09912bf7c4da8c77730f6218de8db3903ca798 (diff)
parent39aad727d9491a338b7ad0ecc33c0283cc0f3801 (diff)
Merge pull request #850 from ProgerXP/ProgerXP-hdel
hDel() returns LONG and is variadic
Diffstat (limited to 'README.markdown')
-rw-r--r--README.markdown6
1 files changed, 4 insertions, 2 deletions
diff --git a/README.markdown b/README.markdown
index de5082ed..1dfbef65 100644
--- a/README.markdown
+++ b/README.markdown
@@ -1421,10 +1421,12 @@ $redis->hLen('h'); /* returns 2 */
_**Description**_: Removes a value from the hash stored at key. If the hash table doesn't exist, or the key doesn't exist, `FALSE` is returned.
##### *Parameters*
*key*
-*hashKey*
+*hashKey1*
+*hashKey2*
+...
##### *Return value*
-*BOOL* `TRUE` in case of success, `FALSE` in case of failure
+*LONG* the number of deleted keys, 0 if the key doesn't exist, `FALSE` if the key isn't a hash.
### hKeys