function XMLParser::EndElement in Asset 6
Same name in this branch
- 6 asset_youtube/xmlparser.class.php \XMLParser::EndElement()
- 6 asset_youtube/inc/xmlparser.class.php \XMLParser::EndElement()
Same name and namespace in other branches
- 5 asset_youtube/xmlparser.class.php \XMLParser::EndElement()
Handler function for the end of a tag
Parameters
resource $parser:
string $name:
File
- asset_youtube/
inc/ xmlparser.class.php, line 172
Class
- XMLParser
- XML Parser Class (php4)
Code
function EndElement($parser, $name) {
//Update stack by removing the end value from it as the parent
array_pop($this->stack);
}