Jump to content

xml string parsing


Goose

Recommended Posts

I have an xml string that I want to parse. I have read the w3schools xml tutorial and I still cannot figure all of this out. I want to do two things: Count the number elements in a given xml string (for a particular xml element) and access a particular value of an xml element. Here is an example of an xml string that I would be dealing with. Note, in my example there can be many <room> elements, many <message> elements and many <user> elements. Thanks in advance!

 

<room>

<name>Default</name>

<id>1</id>

<messages>

<message>

<usr>goose</usr>

<msg>Hello everyone!</msg>

</message>

<message>

<usr>goose</usr>

<msg>This is an XML example.</msg>

</message>

</messages>

<users>

<user>

<uid>1</uid>

<usr>goose</usr>

</user>

</users>

</room>

Link to comment
https://forums.phpfreaks.com/topic/47148-xml-string-parsing/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.