• 首页
  • vue
  • TypeScript
  • JavaScript
  • scss
  • css3
  • html5
  • php
  • MySQL
  • redis
  • jQuery
  • Memcache::getVersion()

    (PECL memcache >= 0.2.0)

    返回服务器版本信息

    说明

    Memcache::getVersion(void): string

    Memcache::getVersion()返回一个字符串表示的服务端版本号。同样你也可以使用函数memcache_get_version()

    返回值

    返回服务端版本号或者在失败时返回FALSE

    范例

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

    参见

    • Memcache::getExtendedStats() 缓存服务器池中所有服务器统计信息
    • Memcache::getStats() 获取服务器统计信息
    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');
    }