php4DomElement
More...
php4DomElement
Definition at line 262 of file inc.xml5compliance.php.
◆ get_attribute() [1/2]
php4DOMElement::get_attribute |
( |
|
$name | ) |
|
◆ get_attribute() [2/2]
php4DOMElement::get_attribute |
( |
|
$name | ) |
|
◆ get_content() [1/2]
php4DOMElement::get_content |
( |
| ) |
|
Definition at line 266 of file inc.xml5compliance.php.
268 $text_node =& $this->myDOMNode->firstChild;
270 if (is_object($text_node))
272 return $text_node->textContent;
◆ get_content() [2/2]
php4DOMElement::get_content |
( |
| ) |
|
Definition at line 331 of file inc.xml5compliance.php.
333 $text_node = $this->myDOMNode->firstChild;
335 if (is_object($text_node))
337 return $text_node->textContent;
◆ get_elements_by_tagname() [1/2]
php4DOMElement::get_elements_by_tagname |
( |
|
$name | ) |
|
Definition at line 209 of file inc.xml5compliance.php.
References array.
211 $myDOMNodeList=$this->myDOMNode->getElementsByTagName($name);
214 while ($node=$myDOMNodeList->item($i))
Create styles array
The data for the language used.
◆ get_elements_by_tagname() [2/2]
php4DOMElement::get_elements_by_tagname |
( |
|
$name | ) |
|
Definition at line 274 of file inc.xml5compliance.php.
References array.
276 $myDOMNodeList=$this->myDOMNode->getElementsByTagName($name);
279 while ($node=$myDOMNodeList->item($i))
Create styles array
The data for the language used.
◆ has_attribute() [1/2]
php4DOMElement::has_attribute |
( |
|
$name | ) |
|
◆ has_attribute() [2/2]
php4DOMElement::has_attribute |
( |
|
$name | ) |
|
◆ owner_document()
php4DOMElement::owner_document |
( |
| ) |
|
◆ remove_attribute() [1/2]
php4DOMElement::remove_attribute |
( |
|
$name | ) |
|
◆ remove_attribute() [2/2]
php4DOMElement::remove_attribute |
( |
|
$name | ) |
|
◆ set_attribute() [1/2]
php4DOMElement::set_attribute |
( |
|
$name, |
|
|
|
$value |
|
) |
| |
◆ set_attribute() [2/2]
php4DOMElement::set_attribute |
( |
|
$name, |
|
|
|
$value |
|
) |
| |
◆ set_content() [1/2]
php4DOMElement::set_content |
( |
|
$text | ) |
|
Definition at line 244 of file inc.xml5compliance.php.
References $text.
253 $text_node =
new DOMText();
254 $text_node->appendData(
$text);
255 if (is_object($this->myDOMNode->firstChild))
257 $this->myDOMNode->replaceChild($text_node, $this->myDOMNode->firstChild);
261 $this->myDOMNode->appendChild($text_node);
◆ set_content() [2/2]
php4DOMElement::set_content |
( |
|
$text | ) |
|
Definition at line 309 of file inc.xml5compliance.php.
References $text.
318 $text_node =
new DOMText();
319 $text_node->appendData(
$text);
320 if (is_object($this->myDOMNode->firstChild))
322 $this->myDOMNode->replaceChild($text_node, $this->myDOMNode->firstChild);
326 $this->myDOMNode->appendChild($text_node);
◆ tagname() [1/2]
php4DOMElement::tagname |
( |
| ) |
|
◆ tagname() [2/2]
php4DOMElement::tagname |
( |
| ) |
|
◆ unlink() [1/2]
php4DOMElement::unlink |
( |
|
$aDomNode | ) |
|
◆ unlink() [2/2]
php4DOMElement::unlink |
( |
|
$aDomNode | ) |
|
The documentation for this class was generated from the following file: