|
PHP5中文手册
Memcache::increment(PECL memcache:0.2-2.1.2) Memcache::increment — Increment item's value 说明
int Memcache::increment
( string $key
[, int $value
] )
Memcache::increment() increments value of the item on the specified value . If item with key key was not numeric and cannot be converted to number, it will change it's value to value . Memcache::increment() does not create an item if it didn't exist. Also you can use memcache_increment() function. 参数
返回值Returns new item's value on success or FALSE on failure. 范例
Example#1 Memcache::increment() example
<?php 参见
|