[phpXML] Re: [phpXML] "evalute" method problem
Brought to you by:
bs_php,
nigelswinson
From: <mf...@mr...> - 2001-10-08 16:02:20
|
Hello Maciej Kus, > . Can you suggest a solution that might solve this problem. > I need to obtain paths to nodes in the same order as in xml. > waiting for help. :) > > Maciej Kus Use the cheap built in sequential XML parser functions of php like xml_parser_create - create an XML parser xml_set_element_handler - set up start and end element handlers xml_set_character_data_handler - set up character data handler xml_parse - start parsing an XML document ... and so on (see the php documentation searching with keyword "XML parser functions" ). They are exactly designed for sequential reading the xml file whereas the <phpxml/> or the xml dom are needed if you want to be independent from the sequential structure of the xml data. -- Marko Faldix M+R infosysteme Hubert-Wienen-Str. 24 52070 Aachen Tel.: 0241-93878-16 Fax.:0241-875095 E-Mail: mf...@mr... -- This message has been sent through the <phpXML/> user discussion list. To unsubscribe, please visit https://sslsites.de/mailinglisten/user/us...@li.../ |