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

Using simplexml_load_string() how do I get "ForgotPassword" from the following XML?

<?xml version="1.0" encoding="utf-8"?>
<ForgotPassword>
    <version>1.0</version>
    <authentication>
        <login>username</login>
        <apikey>login</apikey>
    </authentication>
    <parameters>
        <emailAddress>joesmith@example.com</emailAddress>
    </parameters>
</ForgotPassword>
share|improve this question

1 Answer

up vote 25 down vote accepted

Are you wanting to get the name of the root node?

$xml = simplexml_load_string($str);
echo $xml->getName();
share|improve this answer
That was it. Thank you. – John Conde May 11 '10 at 15:18
exactly what i was looking for! – farinspace Nov 10 '10 at 17:32

protected by John Conde Apr 16 at 2:09

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

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