多应用+插件架构,代码干净,二开方便,首家独创一键云编译技术,文档视频完善,免费商用码云13.8K 广告
## incrByFloat ##### Description Increment the key with floating point precision. 自增一个浮点型的数值。 ##### Parameters *key* *value*: (float) value that will be added to the key ##### Return value *FLOAT* the new value ##### Examples ``` <pre class="calibre9">$redis->incrByFloat('key1', 1.5); /* key1 didn't exist, so it will now be 1.5 */ $redis->incrByFloat('key1', 1.5); /* 3 */ $redis->incrByFloat('key1', -1.5); /* 1.5 */ $redis->incrByFloat('key1', 2.5); /* 3.5 */ ```