|
PHP5中文手册
Memcache::delete(PECL memcache:0.2-2.1.2) Memcache::delete — Delete item from the server 说明
bool Memcache::delete
( string $key
[, int $timeout
] )
Memcache::delete() deletes item with the key . If parameter timeout is specified, the item will expire after timeout seconds. Also you can use memcache_delete() function. 参数
返回值如果成功则返回 TRUE,失败则返回 FALSE。 范例
Example#1 Memcache::delete() example
<?php 参见
|