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:
authorPavel <ProgerXP@users.noreply.github.com>2016-06-24 23:56:08 +0300
committerGitHub <noreply@github.com>2016-06-24 23:56:08 +0300
commit39aad727d9491a338b7ad0ecc33c0283cc0f3801 (patch)
tree6c2a4fd5cd875b3d38ea5827d5ea992cc389a1e0 /README.markdown
parenta13bf17b60e10ff0036afeeb0bc4fdeddbd69fa1 (diff)
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 e9c49250..c32f9c23 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