第 12 章 Zend_Mime

目录

12.1. 简介
12.2. Zend_Mime_Message
12.2.1. Introduction
12.2.2. Instantiation
12.2.3. Adding MIME Parts
12.2.4. Boundary handling
12.2.5. parsing a string to create a Zend_Mime_Message object (experimental)
12.3. Zend_Mime_Part
12.3.1. Introduction
12.3.2. Instantiation
12.3.3. Methods for rendering the message part to a string

12.1. 简介

Zend_Mime 是一个用来处理含有多个部分的 MIME 消息的辅助类. 它未 Zend_Mail 提供支持, 并且可以被其他需要 MIME 支持的应用程序使用.

Zend_Mime 提供了一套简单的方法以便使用 MIME:

  • boundary(): 返回 MIME 分界字符串.
  • boundaryLine(): 返回完整的 MIME 分界行.
  • encodeBase64(): 将一个字符串进行 base64 编码.
  • encodeQuotedPrintable(): 使用 quoted-printable 机制对字符串进行编码.
  • isPrintable(): 如果给定的字符串不含有不可显示(译者:原文是 unprintable ) 的字符则返回 TRUE, 否则返回 FALSE.
  • mimeEnd(): 返回完整的 MIME 结束标志行.