| Línea 77... |
Línea 77... |
| 77 |
protected $progress;
|
77 |
protected $progress;
|
| Línea 78... |
Línea 78... |
| 78 |
|
78 |
|
| 79 |
public function __construct($case_folding = false) {
|
79 |
public function __construct($case_folding = false) {
|
| 80 |
$this->xml_parser = xml_parser_create('UTF-8');
|
80 |
$this->xml_parser = xml_parser_create('UTF-8');
|
| 81 |
xml_parser_set_option($this->xml_parser, XML_OPTION_CASE_FOLDING, $case_folding);
|
- |
|
| 82 |
xml_set_object($this->xml_parser, $this);
|
81 |
xml_parser_set_option($this->xml_parser, XML_OPTION_CASE_FOLDING, $case_folding);
|
| 83 |
xml_set_element_handler($this->xml_parser, array($this, 'start_tag'), array($this, 'end_tag'));
|
82 |
xml_set_element_handler($this->xml_parser, array($this, 'start_tag'), array($this, 'end_tag'));
|
| Línea 84... |
Línea 83... |
| 84 |
xml_set_character_data_handler($this->xml_parser, array($this, 'char_data'));
|
83 |
xml_set_character_data_handler($this->xml_parser, array($this, 'char_data'));
|
| 85 |
|
84 |
|