How do I empty Drupal Cache (without Devel)

前端 未结 12 2503
小鲜肉
小鲜肉 2021-02-18 18:07

How do I empty the Drupal caches:

  • without the Devel module
  • without running some PHP Statement in a new node etc.
  • without going i
12条回答
  •  再見小時候
    2021-02-18 18:42

    If you want to clear the cache from a module, you can use the following code.

    drupal_flush_all_caches();
    

提交回复
热议问题