//如果cache目录不存在,创建cache目录
if(!file_exists('cache') || !is_dir('cache')) {
@mkdir('cache');
}但是如果存在文件cache,就建立不了文件夹cache
求解~~~