$options) { if ($cache->addServer($host, $options['port'], $options['persistent'], $options['weight'], $options['timeout'], $options['retry_interval'])) { $memcacheConnected = true; } } if ($memcacheConnected) { echo '
';
    print_r($cache->getExtendedStats());
    echo '
';
} else {
    die("Unable to connect to any servers.");
}
?>