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


PHP DomDocument::getDefaultNamespaceUri方法代码示例

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


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

示例1: getChildren

 /**
  * Returns all child elements of the given name. Special handling for the following names is implemented:
  * - 'paramaters' returns all direct 'parameters' OR all 'parameters/parameter' child nodes
  * - 'formatters' returns all direct 'formatters' OR all 'formatters/formatter' child nodes
  *
  * @param string $name name of child element
  *
  * @return \DOMNodeList of all child elements with the given name in the default namespace
  */
 public function getChildren($name)
 {
     $query = '';
     $singular_name = null;
     // special nodes of environaut config files where the surrounding plural node
     // may be omitted and the singular nodes be used directly (for less verbose xml)
     if (in_array($name, array('parameters', 'formatters'))) {
         if ($name === 'parameters') {
             $singular_name = 'parameter';
         } elseif ($name === 'formatters') {
             $singular_name = 'formatter';
         }
         $query = 'child::*[local-name() = "%2$s" and namespace-uri() = "%3$s"] | ' . 'child::*[local-name() = "%1$s" and namespace-uri() = "%3$s"]/*' . '[local-name() = "%2$s" and namespace-uri() = "%3$s"]';
     } else {
         $query = 'child::*[local-name() = "%1$s" and namespace-uri() = "%3$s"]';
     }
     $nodes = $this->ownerDocument->getXpath()->query(sprintf($query, $name, $singular_name, $this->ownerDocument->getDefaultNamespaceUri()), $this);
     return $nodes;
 }
开发者ID:graste,项目名称:environaut,代码行数:28,代码来源:DomElement.php


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