我正在尝试使用memcache支持运行php,但我在config.php文件中不断收到此错误消息。
<b>Fatal error</b>: Class 'Memcache' not found in <b>
以下是相关的config.php片段
require 'lib/Minify/Cache/Memcache.php';
$memcache = new Memcache;
if(@$memcache->connect('127.0.0.1', 11211)) {
$min_cachePath = new Minify_Cache_Memcache($memcache);
}
上面代码段中的第二行导致了问题。 我用brew安装了php56。 我已经使用brew安装了php56-memcache 我还使用brew
安装了php56-memcached当我运行php -i | grep memcache
时,我可以看到启用了memcache和memcached。
请帮帮我。 正如评论中所提到的,这不是PHP memcached Fatal error: Class 'Memcache' not found'的重复,因为我已经安装了两个模块,但仍然无法使用。