Mail_mimeDecode::getXML()
Mail_mimeDecode::getXML() -- MIME部分のXML表現を作成する
概要
require_once 'Mail/mimeDecode.php'; |
string getXML (array $decoded)
返り値
string -
XMLドキュメントです。
注意
この関数は、スタティックにコールする
ことができます。
例
例 45-1
Create a XML representation
<?php
...
$output = $obj->decode();
$xml = Mail_mimeDecode::getXML($output);
...
?>
|
|