PHP memcache_getversion function
Like this blog? Consider exploring one of our sponsored banner ads...
Memcache::getVersion
(no version information, might be only in CVS)
Memcache::getVersion — Return version of the serverDescriptionstring Memcache::getVersion ( void )
Memcache::getVersion() returns a string with server’s
version number.
Also you can use memcache_get_version() function.
Returns a string of server version number or FALSE on failure.
Example 1. Memcache::getVersion() example
/* OO API */ $memcache = new Memcache; $memcache->connect('memcache_host', 11211); echo $memcache->getVersion(); /* procedural API */ $memcache = memcache_connect('memcache_host', 11211); echo memcache_get_version($memcache);
See Also
Memcache::getExtendedStats()Memcache::getStats()
About this entry
You’re currently reading “PHP memcache_getversion function,” an entry on BRADINO
- Published:
- 2.26.07 / 12am
- Category:
- PHP Functions
- Tags:
No comments
Jump to comment form | comments rss [?] | trackback uri [?]