本文整理匯總了PHP中XML_Util::send方法的典型用法代碼示例。如果您正苦於以下問題:PHP XML_Util::send方法的具體用法?PHP XML_Util::send怎麽用?PHP XML_Util::send使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類XML_Util
的用法示例。
在下文中一共展示了XML_Util::send方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: exportXML
function exportXML()
{
global $i18n, $ClassDir;
require_once 'XML/Util.php';
require_once $ClassDir . 'StringHelper.class.php';
$header = array("name", "gender", "birthday", "mobile", "phone", "office_phone", "fax", "addrees", "category", "email", "homepage");
$filename = date("Y_m_d") . "_contact_export.xml";
$xml_data = "";
$xml = new XML_Util();
$xml_data .= $xml->getXMLDeclaration("1.0", "UTF-8") . "\n";
$xml_data .= "" . $xml->createStartElement("contact") . "\n";
// Write contact record
$apf_contact = DB_DataObject::factory('ApfContact');
$apf_contact->orderBy('id desc');
$apf_contact->find();
while ($apf_contact->fetch()) {
$xml_data .= "\t" . $xml->createStartElement("record") . "\n";
foreach ($header as $title) {
$coloum_function = "get" . StringHelper::CamelCaseFromUnderscore($title);
$tag = array("qname" => $title, "content" => $apf_contact->{$coloum_function}());
$xml_data .= "\t\t" . $xml->createTagFromArray($tag) . "\n";
}
$xml_data .= "\t" . $xml->createEndElement("record") . "\n";
}
$xml_data .= "" . $xml->createEndElement("contact") . "\n";
$xml->send($xml_data, $filename);
exit;
}