endElement( resource $parser, string $tag_name )

In this article

This function’s access is marked private. This means it is not intended for use by plugin or theme developers, only in other core functions. It is listed here for completeness.

Ends a new XML tag.

Description

Callback function for xml_set_element_handler().

Parameters

$parserresourcerequired
XML Parser resource.
$tag_namestringrequired
XML tag name.

Source

function endElement( $parser, $tag_name ) { // phpcs:ignore WordPress.NamingConventions.ValidFunctionName.FunctionNameInvalid
	// Nothing to do.
}

Changelog

VersionDescription
0.71Introduced.

User Contributed Notes

You must log in before being able to contribute a note or feedback.