Jump to content

SimpleXML Object - Unexpected type


lemmin

Recommended Posts

Either this output is wrong or I am losing my mind:

 

$f = file_get_contents('http://ws.audioscrobbler.com/2.0/?method=track.getsimilar&artist=Astronautalis&track=The+Wondersmith+and+His+Sons&limit=3&api_key=b25b959554ed76058ac220b7b2e0a026');
$similar = simplexml_load_string($f);
print_r($similar);
print_r($similar->similartracks);
print_r($similar->similartracks->track);

 

 

Output:

SimpleXMLElement Object
(
    [@attributes] => Array
        (
            [status] => ok
        )

    [similartracks] => SimpleXMLElement Object
        (
            [@attributes] => Array
                (
                    [track] => The Wondersmith and His Sons
                    [artist] => Astronautalis
                )

            [track] => Array
                (
                    [0] => SimpleXMLElement Object
                        (
                            [name] => Secrets of the Undersea Bell
                            [playcount] => 55141
                            [mbid] => 0b3918ae-f4fc-4312-a185-640dd07b8086
                            [match] => 1
                            [url] => http://www.last.fm/music/Astronautalis/_/Secrets+of+the+Undersea+Bell
                            [streamable] => 1
                            [duration] => 214000
                            [artist] => SimpleXMLElement Object
                                (
                                    [name] => Astronautalis
                                    [mbid] => aa79fa15-c1fe-4114-99ba-1f55d99fceaa
                                    [url] => http://www.last.fm/music/Astronautalis
                                )

                            [image] => Array
                                (
                                    [0] => http://userserve-ak.last.fm/serve/34s/52906489.jpg
                                    [1] => http://userserve-ak.last.fm/serve/64s/52906489.jpg
                                    [2] => http://userserve-ak.last.fm/serve/126/52906489.jpg
                                    [3] => http://userserve-ak.last.fm/serve/300x300/52906489.jpg
                                )

                        )

                    [1] => SimpleXMLElement Object
                        (
                            [name] => My Old Man's Badge
                            [playcount] => 45879
                            [mbid] => d90368b1-144d-4021-96d2-aa840d12d506
                            [match] => 0.964277
                            [url] => http://www.last.fm/music/Astronautalis/_/My+Old+Man's+Badge
                            [streamable] => 1
                            [duration] => 214000
                            [artist] => SimpleXMLElement Object
                                (
                                    [name] => Astronautalis
                                    [mbid] => aa79fa15-c1fe-4114-99ba-1f55d99fceaa
                                    [url] => http://www.last.fm/music/Astronautalis
                                )

                            [image] => Array
                                (
                                    [0] => http://userserve-ak.last.fm/serve/34s/52906489.jpg
                                    [1] => http://userserve-ak.last.fm/serve/64s/52906489.jpg
                                    [2] => http://userserve-ak.last.fm/serve/126/52906489.jpg
                                    [3] => http://userserve-ak.last.fm/serve/300x300/52906489.jpg
                                )

                        )

                    [2] => SimpleXMLElement Object
                        (
                            [name] => A. Letec
                            [playcount] => 3760
                            [mbid] => 3b1450f7-9b5e-489c-baaa-1a7b356ed7ae
                            [match] => 0.635671
                            [url] => http://www.last.fm/music/OTK/_/A.+Letec
                            [streamable] => 1
                            [duration] => 214000
                            [artist] => SimpleXMLElement Object
                                (
                                    [name] => OTK
                                    [mbid] => c8bfbcf9-1208-41ce-9d5e-8188240249a0
                                    [url] => http://www.last.fm/music/OTK
                                )

                        )

                )

        )

)
SimpleXMLElement Object
(
    [@attributes] => Array
        (
            [track] => The Wondersmith and His Sons
            [artist] => Astronautalis
        )

    [track] => Array
        (
            [0] => SimpleXMLElement Object
                (
                    [name] => Secrets of the Undersea Bell
                    [playcount] => 55141
                    [mbid] => 0b3918ae-f4fc-4312-a185-640dd07b8086
                    [match] => 1
                    [url] => http://www.last.fm/music/Astronautalis/_/Secrets+of+the+Undersea+Bell
                    [streamable] => 1
                    [duration] => 214000
                    [artist] => SimpleXMLElement Object
                        (
                            [name] => Astronautalis
                            [mbid] => aa79fa15-c1fe-4114-99ba-1f55d99fceaa
                            [url] => http://www.last.fm/music/Astronautalis
                        )

                    [image] => Array
                        (
                            [0] => http://userserve-ak.last.fm/serve/34s/52906489.jpg
                            [1] => http://userserve-ak.last.fm/serve/64s/52906489.jpg
                            [2] => http://userserve-ak.last.fm/serve/126/52906489.jpg
                            [3] => http://userserve-ak.last.fm/serve/300x300/52906489.jpg
                        )

                )

            [1] => SimpleXMLElement Object
                (
                    [name] => My Old Man's Badge
                    [playcount] => 45879
                    [mbid] => d90368b1-144d-4021-96d2-aa840d12d506
                    [match] => 0.964277
                    [url] => http://www.last.fm/music/Astronautalis/_/My+Old+Man's+Badge
                    [streamable] => 1
                    [duration] => 214000
                    [artist] => SimpleXMLElement Object
                        (
                            [name] => Astronautalis
                            [mbid] => aa79fa15-c1fe-4114-99ba-1f55d99fceaa
                            [url] => http://www.last.fm/music/Astronautalis
                        )

                    [image] => Array
                        (
                            [0] => http://userserve-ak.last.fm/serve/34s/52906489.jpg
                            [1] => http://userserve-ak.last.fm/serve/64s/52906489.jpg
                            [2] => http://userserve-ak.last.fm/serve/126/52906489.jpg
                            [3] => http://userserve-ak.last.fm/serve/300x300/52906489.jpg
                        )

                )

            [2] => SimpleXMLElement Object
                (
                    [name] => A. Letec
                    [playcount] => 3760
                    [mbid] => 3b1450f7-9b5e-489c-baaa-1a7b356ed7ae
                    [match] => 0.635671
                    [url] => http://www.last.fm/music/OTK/_/A.+Letec
                    [streamable] => 1
                    [duration] => 214000
                    [artist] => SimpleXMLElement Object
                        (
                            [name] => OTK
                            [mbid] => c8bfbcf9-1208-41ce-9d5e-8188240249a0
                            [url] => http://www.last.fm/music/OTK
                        )

                )

        )

)
SimpleXMLElement Object
(
    [name] => Secrets of the Undersea Bell
    [playcount] => 55141
    [mbid] => 0b3918ae-f4fc-4312-a185-640dd07b8086
    [match] => 1
    [url] => http://www.last.fm/music/Astronautalis/_/Secrets+of+the+Undersea+Bell
    [streamable] => 1
    [duration] => 214000
    [artist] => SimpleXMLElement Object
        (
            [name] => Astronautalis
            [mbid] => aa79fa15-c1fe-4114-99ba-1f55d99fceaa
            [url] => http://www.last.fm/music/Astronautalis
        )

    [image] => Array
        (
            [0] => http://userserve-ak.last.fm/serve/34s/52906489.jpg
            [1] => http://userserve-ak.last.fm/serve/64s/52906489.jpg
            [2] => http://userserve-ak.last.fm/serve/126/52906489.jpg
            [3] => http://userserve-ak.last.fm/serve/300x300/52906489.jpg
        )

)

 

The first two print_r's show the track variable as an array. When I print it, it shows the first element in that array, not the array itself. If I pass that variable to an array function (array_shift or something) it throws a warning because it isn't an array.

 

Why does it say it is an array?! I can work around this, but I'm just really confused here.

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.