当前位置: 首页>>代码示例>>PHP>>正文


PHP fDOMDocument::saveXML方法代码示例

本文整理汇总了PHP中TheSeer\fDOM\fDOMDocument::saveXML方法的典型用法代码示例。如果您正苦于以下问题:PHP fDOMDocument::saveXML方法的具体用法?PHP fDOMDocument::saveXML怎么用?PHP fDOMDocument::saveXML使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在TheSeer\fDOM\fDOMDocument的用法示例。


在下文中一共展示了fDOMDocument::saveXML方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: generate

 public function generate()
 {
     $document = new fDOMDocument();
     // summary
     $root = $document->createElement('phpact');
     $root->setAttribute('project', $this->summary->getProjectName());
     $root->setAttribute('base', $this->summary->getBaseVersion());
     $root->setAttribute('challenger', $this->summary->getChallengerVersion());
     $root->setAttribute('date', date('c', $this->summary->getTime()));
     $root->setAttribute('signature', strip_tags($this->summary->getSignature()));
     // difference list
     $grouped = $this->groupDifferences($this->differences, Difference::UNIT_NAME);
     foreach ($grouped as $unitName => $differences) {
         /* @var $differences \RenanBr\PhpAct\Difference\DifferenceCollection */
         $family = $differences->current()->getTag(Difference::UNIT_FAMILY);
         $unitElement = $root->createElement($family);
         $unitElement->setAttribute('name', $unitName);
         $this->append($unitElement, 'constant', $differences, Difference::CONSTANT_NAME);
         $this->append($unitElement, 'member', $differences, Difference::MEMBER_NAME);
         $this->append($unitElement, 'method', $differences, Difference::METHOD_NAME);
         $root->appendChild($unitElement);
     }
     $document->appendChild($root);
     $document->preserveWhiteSpace = false;
     $document->formatOutput = true;
     return $document->saveXML();
 }
开发者ID:renanbr,项目名称:phpact,代码行数:27,代码来源:XmlReport.php

示例2: renderStripped

 /**
  * @return string
  */
 public function renderStripped()
 {
     $dom = new fDOMDocument();
     $dom->preserveWhiteSpace = FALSE;
     $dom->loadXML(preg_replace("/\\s{2,}/u", " ", $this->render()));
     foreach ($dom->query('//comment()') as $c) {
         $c->parentNode->removeChild($c);
     }
     $dom->formatOutput = TRUE;
     return $dom->saveXML();
 }
开发者ID:mostwanted1976,项目名称:phpdox,代码行数:14,代码来源:ConfigSkeleton.php

示例3: showSkeletonConfig

 private function showSkeletonConfig($strip)
 {
     $config = file_get_contents(__DIR__ . '/config/skeleton.xml');
     if ($strip) {
         $config = preg_replace("/\\s{2,}/u", " ", $config);
         $dom = new fDOMDocument();
         $dom->preserveWhiteSpace = FALSE;
         $dom->loadXML($config);
         foreach ($dom->query('//comment()') as $c) {
             $c->parentNode->removeChild($c);
         }
         $dom->formatOutput = TRUE;
         $config = $dom->saveXML();
     }
     echo $config;
 }
开发者ID:beingsane,项目名称:phpdox,代码行数:16,代码来源:CLI.php

示例4: testElementCanBeSerializedToDom

 /**
  * @covers TheSeer\phpDox\DocBlock\InvalidElement::asDom
  */
 public function testElementCanBeSerializedToDom()
 {
     $dom = new fDOMDocument();
     $element = new InvalidElement($this->getMock('TheSeer\\phpDox\\DocBlock\\Factory'), 'test');
     $this->assertEquals('<invalid xmlns="http://xml.phpdox.net/src#" annotation="test"/>', $dom->saveXML($element->asDom($dom)));
 }
开发者ID:sakshika,项目名称:ATM,代码行数:9,代码来源:invalidelementTest.php

示例5: testSaveXMLThrowsExceptionWithReferenceToNodeFromOtherDocument

 /**
  * @expectedException \TheSeer\fDOM\fDOMException
  */
 public function testSaveXMLThrowsExceptionWithReferenceToNodeFromOtherDocument()
 {
     $dom = new fDOMDocument();
     $this->dom->saveXML($dom->createElement('foo'));
 }
开发者ID:KingNoosh,项目名称:Teknik,代码行数:8,代码来源:fDOMDocument.test.php


注:本文中的TheSeer\fDOM\fDOMDocument::saveXML方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。