CI_Cache::delete PHP 메소드

delete() 공개 메소드

Delete from Cache
public delete ( string $id ) : boolean
$id string Cache ID
리턴 boolean TRUE on success, FALSE on failure
    public function delete($id)
    {
        return $this->{$this->_adapter}->delete($this->key_prefix . $id);
    }