本文整理汇总了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;
}