|
SYNOPSIS
int xmlReaderMoveToNextAttribute(xmlReader reader)
Parameters:
-
reader - the xmlReader object
Returns:
-
1 - success -
0 - not found -
-1 - other error
DESCRIPTION
xmlReaderMoveToNextAttribute() advances the xmlReader to
the next attribute of the element. If the reader is currently on an
element, it is moved to the first attribute.
EXAMPLE
<$ret = (xmlReaderMoveToFirstAttribute($reader))>
<while $ret eq 1>
<$name = (xmlReaderGetName($reader))>
<$content = (xmlReaderGetContent($reader))>
attr '$name' = '$content'
<$ret = (xmlReaderMoveToNextAttribute($reader))>
</while>
CAVEATS The ordering of the attributes as provided by this function might NOT
be the same as the ordering of the attributes in the XML document.
This is legal, as the ordering of attributes is not significant in an
XML document (see section 3.1 of the XML spec).
SEE ALSO
xmlReaderMoveToAttribute,
xmlReaderMoveToAttributeNumber,
xmlReaderMoveToElement,
xmlReaderMoveToFirstAttribute,
xmlReaderRead
Copyright © Thunderstone Software Last updated: Mon Feb 18 10:28:15 EST 2013
|