Memcache::getVersion

(PECL memcache >= 0.2.0)

Memcache::getVersionReturn version of the server

Описание

string 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 или FALSE в случае возникновения ошибки.

Примеры

Пример #1 Memcache::getVersion() example

<?php

/* 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);

?>

Смотрите также

Коментарии

I also use this method to verify that Memcache is properly configured on the server since it returns false if there is something wrong. So you can do something like this:

<?php
$memcache 
= new Memcache;

if (
$memcache->getVersion() === false) {
    throw new 
Exception('Please, verify the Memcache configuration');
}
2014-08-26 16:16:31
http://php5.kiev.ua/manual/ru/memcache.getversion.html

    Поддержать сайт на родительском проекте КГБ