You can look at phpinfo() or check if any of the functions of memcache is available. Ultimately, check whether the Memcache class exists or not.
e.g.
if(class_exists('Memcache')){
// Memcache is enabled.
}
You can look at phpinfo() or check if any of the functions of memcache is available. Ultimately, check whether the Memcache class exists or not.
e.g.
if(class_exists('Memcache')){
// Memcache is enabled.
}