Memcache::close -- Close memcached server connection
Syntax
bool Memcache::close ( void )
Memcache::close() closes connection to memcached
server. This function doesn't close persistent connections, which are
closed only during web-server shutdown/restart.
Also you can use memcache_close() function.
See example below.
Example 1. Memcache::close() example
<?php
/* procedural API */ $memcache_obj = memcache_connect('memcache_host', 11211); /* do something here .. */ memcache_close($memcache_obj);
/* OO API */ $memcache_obj = new Memcache; $memcache_obj->connect('memcache_host', 11211); /* do something here .. */ $memcache_obj->close();
?>
Memcache::close() returns FALSE if an error occured.
See also
Memcache::connect(),
Memcache::pconnect().
Php memcache close Function syntax tag
memcache close php code on this is provided for your study purpose, it will guide you to know how create and design a website using php. use it to practice and train your self online
Php memcache close syntax tutorial
php tutorial guide and code design are for easy learning and programming. The code practice section provided at the top is for practising of this syntax. Use the code section up to practice your php programming online. Learning php is very easy, all you need is to use the examples on this site and practice them to perfect your skills.