ThinkChat2.0新版上线,更智能更精彩,支持会话、画图、视频、阅读、搜索等,送10W Token,即刻开启你的AI之旅 广告
## append ##### *Description* Append specified string to the string stored in specified key. 添加指定的字符串到指定的字符串KEY。 ##### *Parameters* *Key* *Value* ##### *Return value* *INTEGER*: Size of the value after the append 返回添加后KEY的SIZE ##### *Example* ``` <pre class="calibre16">$redis->set('key', 'value1'); $redis->append('key', 'value2'); /* 12 */ $redis->get('key'); /* 'value1value2' */ ``` ##