xml_set_element_handler

(PHP 4, PHP 5, PHP 7, PHP 8)

xml_set_element_handlerSet up start and end element handlers

Beschreibung

xml_set_element_handler(XMLParser$parser, callable$start_handler, callable$end_handler): true

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.

Parameter-Liste

parser

Der XML-Parser

start_handler

Wenn null oder eine leere Zeichenkette übergeben wird, wird der Handler auf seinen Standardzustand zurückgesetzt.

Wenn handler vom Typ callable ist, wird das Callable als Handler gesetzt.

Wenn handler vom Typ string ist, kann es der Name der Methode eines Objekts sein, das mit xml_set_object() gesetzt wurde.

The signature of the handler must be:

start_element_handler(XMLParser$parser, string$name, array$attributes): void
parser
Der XML-Parser, der den Handler aufruft.
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

Wenn null oder eine leere Zeichenkette übergeben wird, wird der Handler auf seinen Standardzustand zurückgesetzt.

Wenn handler vom Typ callable ist, wird das Callable als Handler gesetzt.

Wenn handler vom Typ string ist, kann es der Name der Methode eines Objekts sein, das mit xml_set_object() gesetzt wurde.

The signature of the handler must be:

end_element_handler(XMLParser$parser, string$name): void
parser
Der XML-Parser, der den Handler aufruft.
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.

Rückgabewerte

Gibt immer true zurück.

Changelog

VersionBeschreibung
8.0.0parser erwartet nun eine XMLParser-Instanz; vorher wurde eine gültige xml-Ressource erwartet.
To Top