mirror of
https://github.com/php-win-ext/pecl-memcache.git
synced 2026-03-24 00:52:07 +01:00
22 lines
276 B
PHP
22 lines
276 B
PHP
--TEST--
|
|
memcache->delete()
|
|
--SKIPIF--
|
|
<?php include 'connect.inc'; ?>
|
|
--FILE--
|
|
<?php
|
|
|
|
include 'connect.inc';
|
|
|
|
$memcache->set('test', 'test');
|
|
|
|
$memcache->delete('test', 10);
|
|
|
|
/* the item should be still there */
|
|
$memcache->delete('test');
|
|
|
|
echo "Done\n";
|
|
|
|
?>
|
|
--EXPECT--
|
|
Done
|