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