ConFoo Montreal 2026: Call for Papers

Memcache::getVersion

memcache_get_version

(PECL memcache >= 0.2.0)

Memcache::getVersion -- memcache_get_version返回服务器版本信息

说明

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

Memcache::getVersion() 返回包含服务器版本号的字符串。

参数

此函数没有参数。

返回值

返回包含服务端版本号的字符串 或者在失败时返回 false

示例

示例 #1 Memcache::getVersion() 示例

<?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);

?>

参见

添加备注

用户贡献的备注 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