php4DomElement
More...
php4DomElement
Definition at line 249 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 256 of file inc.xml5compliance.php.
258 $text_node =&$this->myDOMNode->firstChild;
260 if (is_object($text_node)) {
261 return $text_node->textContent;
◆ get_content() [2/2]
php4DOMElement::get_content |
( |
| ) |
|
Definition at line 314 of file inc.xml5compliance.php.
316 $text_node = $this->myDOMNode->firstChild;
318 if (is_object($text_node)) {
319 return $text_node->textContent;
◆ get_elements_by_tagname() [1/2]
php4DOMElement::get_elements_by_tagname |
( |
|
$name | ) |
|
Definition at line 203 of file inc.xml5compliance.php.
References $i, $name, and array.
205 $myDOMNodeList=$this->myDOMNode->getElementsByTagName(
$name);
208 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 261 of file inc.xml5compliance.php.
References $i, $name, and array.
263 $myDOMNodeList=$this->myDOMNode->getElementsByTagName(
$name);
266 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 237 of file inc.xml5compliance.php.
References $text.
246 $text_node =
new DOMText();
247 $text_node->appendData(
$text);
248 if (is_object($this->myDOMNode->firstChild)) {
249 $this->myDOMNode->replaceChild($text_node, $this->myDOMNode->firstChild);
251 $this->myDOMNode->appendChild($text_node);
◆ set_content() [2/2]
php4DOMElement::set_content |
( |
|
$text | ) |
|
Definition at line 295 of file inc.xml5compliance.php.
References $text.
304 $text_node =
new DOMText();
305 $text_node->appendData(
$text);
306 if (is_object($this->myDOMNode->firstChild)) {
307 $this->myDOMNode->replaceChild($text_node, $this->myDOMNode->firstChild);
309 $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: