(PHP 4, PHP 5, PHP 7, PHP 8)
xml_set_object — 在對象中使用 XML 解析器
該函數(shù)使得 parser
指定的解析器可以被用在 object
對象中。所有的回叫函數(shù)(callback function)都可以由 xml_set_element_handler() 等函數(shù)來設置,它們被假定為 object
對象的方法。
示例 #1 xml_set_object() 示例
<?php
class xml {
var $parser;
function xml()
{
$this->parser = xml_parser_create();
xml_set_object($this->parser, $this);
xml_set_element_handler($this->parser, "tag_open", "tag_close");
xml_set_character_data_handler($this->parser, "cdata");
}
function parse($data)
{
xml_parse($this->parser, $data);
}
function tag_open($parser, $tag, $attributes)
{
var_dump($parser, $tag, $attributes);
}
function cdata($parser, $cdata)
{
var_dump($parser, $cdata);
}
function tag_close($parser, $tag)
{
var_dump($parser, $tag);
}
} // end of class xml
$xml_parser = new xml();
$xml_parser->parse("<A ID='hallo'>PHP</A>");
?>