Memcached::getVersion

(PECL memcached >= 0.1.5)

Memcached::getVersionGet server pool version info

Opis

public Memcached::getVersion ( void ) : array

Memcached::getVersion() returns an array containing the version info for all available memcache servers.

Parametry

Ta funkcja nie posiada parametrów.

Zwracane wartości

Array of server versions, one entry per server.

Przykłady

Przykład #1 Memcached::getVersion() example

<?php
$m 
= new Memcached();
$m->addServer('localhost'11211);

print_r($m->getVersion());
?>

Powyższy przykład wyświetli coś podobnego do:

Array
(
    [localhost:11211] => 1.2.6
)

add a note add a note

User Contributed Notes 1 note

up
11
Mads Madsen
11 years ago
Was going mad, I figured getStatus() would return false on servers not responding. This is however not true, it will return:
array(1) {
  ["127.0.0.1:11112"]=>
  string(11) "255.255.255"
}
On a failed connection.
To Top