PHP 清除Drupal 5缓存
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP 清除Drupal 5缓存相关的知识,希望对你有一定的参考价值。
<?php
/*
* See http://drupal.org/node/152983 for details!
*/
// only allow site administrators to visit this page:
if (!user_access('administer site configuration')) {
drupal_not_found();
}
else {
drupal_clear_css_cache();
$tables = array(
'cache',
'cache_content',
'cache_filter',
'cache_menu',
'cache_page',
'cache_views',
);
foreach ($tables as $table) {
cache_clear_all('*', $table, TRUE);
}
drupal_set_message('Cache cleared.');
drupal_goto('/');
}
?>
以上是关于PHP 清除Drupal 5缓存的主要内容,如果未能解决你的问题,请参考以下文章
PHP Drupal 6在页面上清除缓存
drupal清除缓存
sh 清除Drupal缓存
sql 通过SQL清除Drupal缓存
允许非站点管理员通过管理员菜单访问清除缓存,Drupal 6
如何删除drupal中的缓存db条目?