Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
未読メッセージを取得して、メッセージを日付順に並べ替えることは可能ですか? 私は持っている
$messages = imap_search($imap,"UNSEEN"); imap_sort($imap, SORTDATE, 1);
しかし、そうすべきではないかどうか疑問に思っています
imap_sort($imap, SORTDATE, 1); $messages = imap_search($imap,"UNSEEN");
または、他の何か ?
あなたは使用することができます
$messages = imap_search($imap,"UNSEEN"); $sorted = array_reverse($messages);
元のデータ セットに対して 2 つの異なるアクションを個別に実行します。考えられる方法の 1 つは、最初のコマンド (検索) からすべてのデータを取得し、それを変数に格納してから、独自の並べ替え機能を実装することです。