选择语言 :

 Module_Cache::delete_all

删除全部缓存

boolean Module_Cache::delete_all( )
返回值
  • boolean
File: ./modules/cache/cache.class.php
public function delete_all()
{
    try
    {
        return $this->driver->delete_all();
    }
    catch (Exception $e)
    {
        $this->last_error_msg = $e->getMessage();
        $this->last_error_no  = $e->getCode();

        return false;
    }
}