xml_set_element_handlerSet up start and end element handlers
&reftitle.description;
truexml_set_element_handlerXMLParserparsercallablestart_handlercallableend_handler
Sets the element handler functions for the XML parser.
start_handler is called when a new XML element is
opened. end_handler is called when an XML element
is closed.
&reftitle.parameters;
&xml.parser.param;
start_handler
&xml.handler.description;
The signature of the handler must be:
voidstart_element_handlerXMLParserparserstringnamearrayattributes
&xml.handler.parser.param;
name
Contains the name of the element for which this handler is called.
If case-folding is in effect
for this parser, the element name will be in uppercase letters.
attributes
An associative array with the element's attributes.
The array is empty if the element has no attributes.
The keys of this array are the attribute names,
the values are the attribute values.
Attribute names are
case-folded
on the same criteria as element names.
Attribute values are not case-folded.
The order in which attributes is traversed
is identical to the order in which the attributes were declared.
end_handler
&xml.handler.description;
The signature of the handler must be:
voidend_element_handlerXMLParserparserstringname
&xml.handler.parser.param;
name
Contains the name of the element for which this handler is called.
If case-folding is in effect
for this parser, the element name will be in uppercase letters.
&reftitle.returnvalues;
&return.true.always;
&reftitle.changelog;
&Version;&Description;
&xml.changelog.parser-param;