XMLReader::readInnerXML

(PHP 5 >= 5.2.0)

XMLReader::readInnerXMLRetrieve XML from current node

Опис

public string XMLReader::readInnerXML ( void )

Reads the contents of the current node, including child nodes and markup.

Параметри

В цієї функції немає параметрів.

Значення, що повертаються

Returns the contents of the current node as a string. Empty string on failure.

Примітки

Застереження

This function is only available when PHP is compiled against libxml 20620 or later.

Прогляньте Також

add a note add a note

User Contributed Notes 2 notes

up
14
Evert Pot
9 years ago
Disregard my other comment.

readInnerXml does not advance the cursor, so you can call it more than once. I made a mistake testing this.
up
-34
Evert Pot
9 years ago
Note that readInnerXml() also advances the cursor.
To Top