Çağrı-time pass-by-reference onaylanmaz;

0 Cevap

Ben uyarı alıyorum: Çağrı-time pass-by-reference kod aşağıdaki satırları onaylanmaz. Herkes yardımcı olun

 function XML(){
            $this->parser = &xml_parser_create();
            xml_parser_set_option(&$this->parser, XML_OPTION_CASE_FOLDING, false);
            xml_set_object(&$this->parser, &$this);
            xml_set_element_handler(&$this->parser, 'open','close');
            xml_set_character_data_handler(&$this->parser, 'data');
    }
    function destruct(){ xml_parser_free(&$this->parser); }
    function & parse(&$data){
            $this->document = array();
            $this->stack    = array();
            $this->parent   = &$this->document;
            return xml_parse(&$this->parser, &$data, true) ? $this->document : NULL;
    }

0 Cevap