當前位置: 首頁>>代碼示例>>PHP>>正文


PHP SimpleXMLElement::appendChild方法代碼示例

本文整理匯總了PHP中SimpleXMLElement::appendChild方法的典型用法代碼示例。如果您正苦於以下問題:PHP SimpleXMLElement::appendChild方法的具體用法?PHP SimpleXMLElement::appendChild怎麽用?PHP SimpleXMLElement::appendChild使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在SimpleXMLElement的用法示例。


在下文中一共展示了SimpleXMLElement::appendChild方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: convertPhpObjToDom

 /**
  * converts php-structure to DOM-object.
  *
  * @param array $arr php-structure
  * @param SimpleXMLElement $node parent node where new element to attach
  * @param DOMDocument $dom DOMDocument object
  * @return SimpleXMLElement
  */
 public static function convertPhpObjToDom($arr, $node, $dom)
 {
     if (is_array($arr)) {
         /**
          * If arr has integer keys, this php-array must be converted in
          * xml-array representation (<array><item>..</item>..</array>)
          */
         $arrayParam = array();
         foreach ($arr as $k => $v) {
             if (is_integer($k)) {
                 $arrayParam[] = $v;
             }
         }
         if (0 < count($arrayParam)) {
             $node->appendChild($arrayDom = $dom->createElement("array"));
             foreach ($arrayParam as $key => $val) {
                 $new = $arrayDom->appendChild($dom->createElement('item'));
                 self::convertPhpObjToDom($val, $new, $dom);
             }
         } else {
             foreach ($arr as $key => $val) {
                 $new = $node->appendChild($dom->createElement(self::encode($key)));
                 self::convertPhpObjToDom($val, $new, $dom);
             }
         }
     } else {
         $node->appendChild($dom->createTextNode(self::encode($arr)));
     }
 }
開發者ID:jfquestiaux,項目名稱:fabrik,代碼行數:37,代碼來源:api.php

示例2: _convertLayoutHeadNode

 protected function _convertLayoutHeadNode(SimpleXMLElement $sourceXml, SimpleXMLElement $targetXml)
 {
     foreach ($sourceXml->children() as $child) {
         $path = $this->_env['ext_name'] . '::' . (string) $child;
         break;
     }
     switch ((string) $sourceXml['method']) {
         case 'addJs':
             $targetNode = $targetXml->addChild('js');
             $targetNode->addAttribute('class', $path);
             break;
         case 'addCss':
             $targetNode = $targetXml->addChild('css');
             $targetNode->addAttribute('src', $path);
             break;
         default:
             $targetNode = $targetXml->appendChild($sourceXml->cloneNode(true));
     }
 }
開發者ID:reillo,項目名稱:convertm1m2,代碼行數:19,代碼來源:ConvertM1M2.php


注:本文中的SimpleXMLElement::appendChild方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。