包 core

包 mvc

包 orm

包 form

包 database

包 helper

包 cache

包 webcontrols

包 behavior

包 exception

包 debug

类 - QDom_Element

helper
类层次 QDom_Element » DOMElement » DOMNode
实现的接口
版本 $Id: dom_element.php 2639 2009-07-31 07:38:22Z yangyi $

QDom_Element 类对PHP5自带的DOMElement进行了自己的扩展

公共方法

隐藏继承的方法

方法描述定义于
__get() 魔法方法,获取attribute QDom_Element
__set() 魔法方法,设置attribute QDom_Element
__isset() 魔法方法,检查attribute是否存在 QDom_Element
__unset() 魔法方法,删除attribute QDom_Element
offsetExists() 实现ArrayAccess接口 QDom_Element
offsetSet() 实现ArrayAccess接口 QDom_Element
offsetGet() 实现ArrayAccess接口 QDom_Element
offsetUnset() 实现ArrayAccess接口 QDom_Element
__toString() 返回当前element的xml字符串,相当于javascript dom里的outerHTML() QDom_Element
setAttributes() 批量设置attribute QDom_Element
getAttributes() 批量获取attribute,如果指定了key则只返回指定的 QDom_Element
select() xpath查询 QDom_Element
insertAfter() 插入一个新的子节点到指定的子节点之后,返回插入的新子节点 QDom_Element
inject() 把节点插入到指定节点的指定位置 QDom_Element
isFirst() 是否是第一个子节点 QDom_Element
isLast() 是否最后一个子节点 QDom_Element
clean() 清除所有的子节点 QDom_Element
erase() 删除自己 QDom_Element
appendXML() 把xml字符串插入到当前节点尾部 QDom_Element
replaceXML() 用xml字符串替换当前节点的所有子节点 QDom_Element
next() 在同级之后的节点中查找 QDom_Element
getAttribute() DOMElement
setAttribute() DOMElement
removeAttribute() DOMElement
getAttributeNode() DOMElement
setAttributeNode() DOMElement
removeAttributeNode() DOMElement
getElementsByTagName() DOMElement
getAttributeNS() DOMElement
setAttributeNS() DOMElement
removeAttributeNS() DOMElement
getAttributeNodeNS() DOMElement
setAttributeNodeNS() DOMElement
getElementsByTagNameNS() DOMElement
hasAttribute() DOMElement
hasAttributeNS() DOMElement
setIdAttribute() DOMElement
setIdAttributeNS() DOMElement
setIdAttributeNode() DOMElement
__construct() DOMElement
insertBefore() DOMNode
replaceChild() DOMNode
removeChild() DOMNode
appendChild() DOMNode
hasChildNodes() DOMNode
cloneNode() DOMNode
normalize() DOMNode
isSupported() DOMNode
hasAttributes() DOMNode
compareDocumentPosition() DOMNode
isSameNode() DOMNode
lookupPrefix() DOMNode
isDefaultNamespace() DOMNode
lookupNamespaceUri() DOMNode
isEqualNode() DOMNode
getFeature() DOMNode
setUserData() DOMNode
getUserData() DOMNode
getNodePath() DOMNode
C14N() DOMNode
C14NFile() DOMNode

保护的方法

隐藏继承的方法

方法描述定义于
_match() 根据给定的nodeName和attribute数组,对节点进行比较 QDom_Element
prev() 在同级之前的节点中查找 QDom_Element

方法详细说明

__get() 方法

public mixed __get($key)

$key string
{return} mixed

魔法方法,获取attribute


__set() 方法

public void __set($key, $val)

$key string
$val string
{return}

魔法方法,设置attribute


__isset() 方法

public void __isset($key)

$key string
{return}

魔法方法,检查attribute是否存在


__unset() 方法

public void __unset($key)

$key string
{return}

魔法方法,删除attribute


offsetExists() 方法

public void offsetExists($key)

$key mixed
{return} void

实现ArrayAccess接口


offsetSet() 方法

public void offsetSet($key, $value)

$key mixed
$value mixed
{return} void

实现ArrayAccess接口


offsetGet() 方法

public void offsetGet($key)

$key mixed
{return} void

实现ArrayAccess接口


offsetUnset() 方法

public void offsetUnset($key)

$key mixed
{return} void

实现ArrayAccess接口


__toString() 方法

public string __toString()

返回当前element的xml字符串,相当于javascript dom里的outerHTML()


setAttributes() 方法

public void setAttributes($attrs)

$attrs array
{return}

批量设置attribute


getAttributes() 方法

public array getAttributes($key)

$key string
{return} array

批量获取attribute,如果指定了key则只返回指定的


select() 方法

public void select($query, $return_first)

$query string
$return_first boolean
{return}

xpath查询


insertAfter() 方法

public DOMNode insertAfter($newnode, $refnode)

$newnode DOMNode
$refnode DOMNode
{return} DOMNode

插入一个新的子节点到指定的子节点之后,返回插入的新子节点


inject() 方法

public DOMNode inject($refnode, $where)

$refnode DOMNode
$where string
{return} DOMNode

把节点插入到指定节点的指定位置


isFirst() 方法

public boolean isFirst()

是否是第一个子节点


isLast() 方法

public boolean isLast()

是否最后一个子节点


clean() 方法

public DOMNode clean()

清除所有的子节点


erase() 方法

public void erase()

删除自己


appendXML() 方法

public DOMElement appendXML($xml)

$xml string
{return} DOMElement

把xml字符串插入到当前节点尾部


replaceXML() 方法

public DOMElement replaceXML($xml)

$xml string
{return} DOMElement

用xml字符串替换当前节点的所有子节点


_match() 方法

protected boolean _match($node, $nodeName, $attributes)

$node DOMElement
$nodeName string
$attributes array
{return} boolean

根据给定的nodeName和attribute数组,对节点进行比较


prev() 方法

public mixed prev($nodeName, $attributes)

$nodeName string
$attributes array
{return} mixed

在同级之前的节点中查找 可以指定nodeName和attributes匹配条件


next() 方法

public mixed next($nodeName, $attributes)

$nodeName string
$attributes array
{return} mixed

在同级之后的节点中查找 可以指定nodeName和attributes匹配条件