Memcached::getVersion

(PECL memcached >= 0.1.5)

Memcached::getVersionGet server pool version info

Descrierea

public Memcached::getVersion ( ) : array

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

Parametri

Această funcție nu are parametri.

Valorile întoarse

Array of server versions, one entry per server.

Exemple

Example #1 Memcached::getVersion() example

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

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

Exemplul de mai sus va afișa ceva similar cu:

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