Horde_Imap_Client_Ids::remove PHP 메소드

remove() 공개 메소드

Removed IDs from the current object.
부터: 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));
        }
    }