xml_set_element_handler
(PHP 4, PHP 5, PHP 7, PHP 8)
Set up start and end element handlers
Description
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.
Parameters
start_handlerDescription
The signature of the handler must be:
start_element_handler(XMLParser $parser, string $name, array $attributes): voidnameContains 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.
attributesAn 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
attributesis traversed is identical to the order in which the attributes were declared.
end_handlerDescription
The signature of the handler must be:
end_element_handler(XMLParser $parser, string $name): voidnameContains 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.
Return Values
Always
Changelog
| Version | Description |
|---|