NIUCLOUD是一款SaaS管理后台框架多应用插件+云编译。上千名开发者、服务商正在积极拥抱开发者生态。欢迎开发者们免费入驻。一起助力发展! 广告
## 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' */ ``` ##