AI写作智能体 自主规划任务,支持联网查询和网页读取,多模态高效创作各类分析报告、商业计划、营销方案、教学内容等。 广告
## hLen ##### *Description* Returns the length of a hash, in number of items 取得HASH表的长度。 ##### *Parameters* *key* ##### *Return value* *LONG* the number of items in a hash, `<span class="calibre12">FALSE</span>` if the key doesn't exist or isn't a hash. ##### *Example* ``` <pre class="calibre16">$redis->delete('h') $redis->hSet('h', 'key1', 'hello'); $redis->hSet('h', 'key2', 'plop'); $redis->hLen('h'); /* returns 2 */ ``` ##