我正在尝试在我的主机上使用memcache,但是当我在我的php代码中包含memcache时,一个带有memcache统计数据的页面显示在我的html并弄乱了我的页面。
我只是插入
include('memcache.php');
$memcache = new Memcache;
$memcache->connect('127.0.0.1', 11211) or die ("Could not connect to cache.your_server.com");
在我的代码和memcache统计信息页面上显示。
有任何想法如何禁用它的外观?
答案 0 :(得分:2)
您包含的memcache.php
文件是统计信息页面。它不打算包括在内。