I want to use the xml extension on my linux box without php going on the fritz. The same script on a windows xp pc doesn't make any trouble.
Segmentation fault - that's not an script error but php kicking the bucket.
Search found 2 matches
- Mon Oct 23, 2006 6:52 pm
- Forum: PHP - Code
- Topic: xml_parse -> seg fault
- Replies: 2
- Views: 580
- Mon Oct 23, 2006 2:57 pm
- Forum: PHP - Code
- Topic: xml_parse -> seg fault
- Replies: 2
- Views: 580
xml_parse -> seg fault
Hi. I have problems with the xml extension when using xml_set_object. Simplified script: <?php class MyClass { function startElement($parser, $name, $attribs) { if ($name=="BODY") { echo "+"; flush(); } } function endElement($parser, $name) { if ($name=="BODY") { echo &...