Memcache::getVersion -- Return version of the server
Syntax
string Memcache::getVersion ( void )
Memcache::getVersion() returns a string with server's
version number.
Also you can use memcache_get_version() function.
See example below.
Example 1. Memcache::getVersion() example
<?php
/* procedural API */ $memcache_obj = memcache_connect('memcache_host', 11211);
echo memcache_get_version($memcache_obj);
/* OO API */ $memcache_obj = new Memcache; echo $memcache_obj->getVersion();
?>
Memcache::getVersion() returns FALSE if an error
occured.
See also
Memcache::getStats().
Php memcache getversion Function syntax tag
memcache getversion 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 getversion 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.