CakeFest 2024: The Official CakePHP Conference

Memcache::getVersion

(PECL memcache >= 0.2.0)

Memcache::getVersionReturn version of the server

Descrição

Memcache::getVersion(): string|false

Memcache::getVersion() returns a string with server's version number. Also you can use memcache_get_version() function.

Parâmetros

Esta função não possui parâmetros.

Valor Retornado

Returns a string of server version number ou false em caso de falha.

Exemplos

Exemplo #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);

?>

Veja Também

add a note

User Contributed Notes 1 note

up
0
b dot willemsen8 at gmail dot com
9 years ago
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');
}
To Top