这段代码有什么作用? php 中的递归迭代器?

发布于 2024-08-31 12:00:28 字数 255 浏览 3 评论 0原文

我正在开发一个基于 zend 框架的电子邮件项目,并且正在在线跟踪一些代码示例。我无法理解这行代码,它显然循环遍历电子邮件的不同“部分”。顺便说一句,我不知道它是如何工作的,并怀疑发生了一些错误,我的解析器没有正确显示。

foreach (new RecursiveIteratorIterator($mail->getMessage($i)) as $ii=>$part)

上面的 foreach 循环是什么意思?

I'm working on a zend framework based email project and I'm following some code samples online.. I can't understand this line of code which apparently loops through different 'parts' of an email message. I have no idea how it works btw and suspect that theres some error taking place which my parser isn't showing right.

foreach (new RecursiveIteratorIterator($mail->getMessage($i)) as $ii=>$part)

what does the above foreach loop mean?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

追我者格杀勿论 2024-09-07 12:00:28

简单来说,该语句将迭代 mail->getMessage 包含的所有元素,从而展平树结构,使其更像列表。

递归迭代器用于遍历树 - (或更准确地说是可以包含迭代器的迭代器)。 RecursiveIteratorIterator 类 文档没有很好地解释它 - 但请阅读通过例子。

In simple terms the statement will iterate through all of the elements that the mail->getMessage contains flattening the tree structure to make it more like a list.

Recursive iterators are used to traverse through a tree - (or more accurately iterators that can contain iterators). The RecursiveIteratorIterator class documentation doesn't explain it particularly well - but read through the examples.

嘦怹 2024-09-07 12:00:28

它根据 id $i 的消息内容创建一个新的递归迭代器,并循环访问电子邮件的各个部分。电子邮件通常由多部分消息组成,因此 getmessage 方法可能会在检索标头后调用以检索消息的第一部分。获取该部分的方法可能会使用递增的 id 调用自身(递归地)来返回该部分,因此 $ii=>$part。

在不知道方法调用的全部内容的情况下很难进行扩展。

目录递归示例

$dir = new RecursiveDirectoryIterator(".");
foreach(new RecursiveIteratorIterator($dir) as $file) {
  // find .txt files
  if (preg_match('/.txt$/i', $file->getFilename())) {
  }
}

编辑 2:使用链接站点上的示例:

$foundPart = null;
foreach (new RecursiveIteratorIterator($mail->getMessage(1)) as $part) {
        if (strtok($part->contentType, ';') == 'text/plain') {
            $foundPart = $part;
            break;
        }
}

这将检索所有部分并查找纯文本部分。这是一种递归地循环某事物并允许对其进行操作的方法。

It creates a new recursive iterator based on the contents of the message with id $i and loops through the parts of the e-mail. E-mails generally consist of multi-part messages, so the getmessage method probably has a call to retrieve the first part of the message after retrieving headers. The method to get the part likely calls itself (recursively) with an incrementing id to return the part, hence the $ii=>$part.

It is difficult to expand without knowing the full contents of the method call.

Example for Directory recursion

$dir = new RecursiveDirectoryIterator(".");
foreach(new RecursiveIteratorIterator($dir) as $file) {
  // find .txt files
  if (preg_match('/.txt$/i', $file->getFilename())) {
  }
}

EDIT 2: Using the example on the linked site:

$foundPart = null;
foreach (new RecursiveIteratorIterator($mail->getMessage(1)) as $part) {
        if (strtok($part->contentType, ';') == 'text/plain') {
            $foundPart = $part;
            break;
        }
}

This retrieves all the parts and looks for a plaintext part. It is a way of looping through something recursively allowing manipulation on it.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文