PHP 8.5.0 Alpha 2 available for testing

Memcache::getVersion

memcache_get_version

(PECL memcache >= 0.2.0)

Memcache::getVersion -- memcache_get_versionDevuelve el número de versión del servidor

Descripción

Memcache::getVersion(): string|false
memcache_get_version(Memcache $memcache): string|false

Memcache::getVersion() devuelve una cadena con el número de versión del servidor.

Parámetros

Esta función no contiene ningún parámetro.

Valores devueltos

Devuelve un string con el número de versión del servidor o false si ocurre un error.

Ejemplos

Ejemplo #1 Ejemplo con Memcache::getVersion()

<?php

/* API orientada a objetos */
$memcache = new Memcache;
$memcache->connect('memcache_host', 11211);
echo
$memcache->getVersion();

/* API procedimental */
$memcache = memcache_connect('memcache_host', 11211);
echo
memcache_get_version($memcache);

?>

Ver también

add a note

User Contributed Notes 1 note

up
0
b dot willemsen8 at gmail dot com
10 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