我的应用程序的结构方式,每个组件都以XML格式生成输出并返回一个XmlWriter对象。在将最终输出呈现给页面之前,我将所有XML组合在一起并对该对象执行XSL转换。下面是应用程序结构的简化代码示例。
组合这样的XmlWriter对象是否有意义?有没有更好的方法来构建我的应用程序?最佳解决方案是我不必将单个XmlWriter实例作为参数传递给每个组件。
function page1Xml() {
$content = new XmlWriter();
$content->openMemory();
$content->startElement('content');
$content->text('Sample content');
$content->endElement();
return $content;
}
function generateSiteMap() {
$sitemap = new XmlWriter();
$sitemap->openMemory();
$sitemap->startElement('sitemap');
$sitemap->startElement('page');
$sitemap->writeAttribute('href', 'page1.php');
$sitemap->text('Page 1');
$sitemap->endElement();
$sitemap->endElement();
return $sitemap;
}
function output($content)
{
$doc = new XmlWriter();
$doc->openMemory();
$doc->writePi('xml-stylesheet', 'type="text/xsl" href="template.xsl"');
$doc->startElement('document');
$doc->writeRaw( generateSiteMap()->outputMemory() );
$doc->writeRaw( $content->outputMemory() );
$doc->endElement();
$doc->endDocument();
$output = xslTransform($doc);
return $output;
}
$content = page1Xml();
echo output($content);
更新
我可以放弃XmlWriter并使用DomDocument代替。它更灵活,似乎表现更好(至少在我创建的粗略测试中)。
答案 0 :(得分:2)
在这个架构中,我宁愿将一组Writers传递给
function output($ary) {
.....
foreach($ary as $w) $doc->writeRaw($w->outputMemory());
.....
}
output(array(page1(), siteMap(), whateverElse()))
答案 1 :(得分:0)
我从来没有真正看到过任何人以这种方式组合XmlWriter对象,我认为这对我想做的事情并不是很有效。我决定最好的方法是使用DOMDocument。不同之处在于:DOMDocument在输出之前不会生成任何XML,而XmlWriter基本上是一个StringBuilder并且不够灵活。
答案 2 :(得分:0)
我会将page1Xml和generateSiteMap作为输入获取,并将其作为输出返回