previousMail_mimeDecode::uudecode() (Previous) (Next) Mail_Queuenext

View this page in Last updated: Sun, 21 Jun 2009
English | Brazilian Portuguese | Chinese | Dutch | French | German | Hungarian | Japanese | Polish | Russian | Spanish | Turkish

Mail_mimeDecode::getXML()

Mail_mimeDecode::getXML() – MIME パートの XML 表現を作成する

Synopsis

require_once 'Mail/mimeDecode.php';

string getXML ( array $decoded )

Description

getXML()は、decode() が返した配列を有効な XML ドキュメントに変換します。

Parameter

  • array $decode - decode() の配列です。

Return value

string - XML ドキュメントです。

Note

This function can be called statically.

Example

XML 表現の作成

<?php
...      
$output $obj->decode();
$xml    Mail_mimeDecode::getXML($output);
...
?>
previousMail_mimeDecode::uudecode() (Previous) (Next) Mail_Queuenext

Download Documentation Last updated: Sun, 21 Jun 2009
Do you think that something on this page is wrong? Please file a bug report or add a note.
User Notes:
There are no user contributed notes for this page.