CakeFest 2024: The Official CakePHP Conference

Memcache::getVersion

(PECL memcache >= 0.2.0)

Memcache::getVersionRetourne le numéro de version du serveur

Description

Memcache::getVersion(): string|false

Memcache::getVersion() retourne une chaîne avec le numéro de version du serveur. Vous pouvez aussi utiliser la fonction memcache_get_version().

Liste de paramètres

Cette fonction ne contient aucun paramètre.

Valeurs de retour

Retourne une chaîne de caractères du numéro de version de serveur ou false si une erreur survient.

Exemples

Exemple #1 Exemple avec Memcache::getVersion()

<?php

/* API orientée objet */
$memcache = new Memcache;
$memcache->connect('memcache_host', 11211);
echo
$memcache->getVersion();

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

?>

Voir aussi

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