Horde_Imap_Client_Ids::remove PHP Method

remove() public method

Removed IDs from the current object.
Since: 2.17.0
public remove ( mixed $ids )
$ids mixed Either Horde_Imap_Client_Ids object, array, or sequence string.
    public function remove($ids)
    {
        if (!$this->isEmpty() && ($remove = $this->_resolveIds($ids))) {
            $this->_ids = array_diff($this->_ids, array_unique($remove));
        }
    }