Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a XML file and a a bunch of XSD files with schemas. How do I parse the XML file using the correct XSD file and schema in PHP?

share|improve this question

2 Answers

Check this tool - http://github.com/moyarada/XSD-to-PHP. It sounds exactly what you're asking. You can marshal/unmarshal XML usind generated from XSD PHP classes.

share|improve this answer

You can use the DOM or XmlReader extensions

to validate documents against a schema.

share|improve this answer
Thanks. But i would like to parse the XML file (get the values), not validate it – jonasl Jul 15 '10 at 7:50
@jonas Could you update your question and provide an example please? I'm not sure I understand what you are trying to do. – Gordon Jul 15 '10 at 10:37

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.