imap_listscan - Returns the list of mailboxes that matches the given text
Вернуться к: IMAP Функции
imap_listscan
(PHP 4, PHP 5, PHP 7)
imap_listscan — Returns the list of mailboxes that matches the given text
Описание
$imap_stream
, string $ref
, string $pattern
, string $content
)
Returns an array containing the names of the mailboxes that have
content
in the text of the mailbox.
This function is similar to imap_listmailbox(),
but it will additionally check for the presence of the string
content
inside the mailbox data.
Список параметров
-
imap_stream
-
Поток IMAP, полученный из imap_open().
-
ref
-
ref
should normally be just the server specification as described in imap_open() -
pattern
-
Определяет начало поиска в иерархии почтовых ящиков.
Есть два специальных символа, которые можно использовать при передаче как часть
pattern
: '*' и '%'. '*' возвращает все почтовые ящики. Если вы передадитеpattern
как '*', то получите полный список иерархии почтовых ящиков. '%' вернет только текущий уровень. '%', переданный как параметрpattern
, вернет почтовые ящики только на самом верхнем уровне; '~/mail/%' на UW_IMAPD вернет все ящики в директории ~/mail, кроме тех, которые находятся в ее поддиректориях. -
content
-
The searched string
Возвращаемые значения
Returns an array containing the names of the mailboxes that have
content
in the text of the mailbox.
Смотрите также
- imap_listmailbox() - Псевдоним imap_list
- imap_search() - This function returns an array of messages matching the given search criteria
Вернуться к: IMAP Функции