xml_set_object
(PHP 4 )
xml_set_object -- 在對象中使用 XML 解析器
描述
void xml_set_object ( resource parser, object object)
該函式使得 parser 指定的解析器可以被用在 object 對象中。所有的回叫函式(callback function)都可以由 xml_set_element_handler() 等函式來設定,它們被假定為 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("<Ainnerlink" href="/wiki/hallo">hallo">PHP</A>"); ?> |