简体   繁体   English

数组内数组的打印元素

[英]Print element of array within array

This is my array structure. 这是我的数组结构。 I want to print title and track id. 我想打印标题和曲目ID。

                Array
(
    [@attributes] => Array
        (
            [type] => array
        )

    [track] => SimpleXMLElement Object
        (
            [id] => 3617316
            [created-at] => 2010-06-24T09:09:23Z
            [user-id] => 1219873
            [permalink] => kalimba
            [duration] => 348213
            [commentable] => true
            [state] => finished
            [sharing] => public
            [tag-list] => SimpleXMLElement Object
                (
                )

            [description] => SimpleXMLElement Object
                (
                )

            [streamable] => true
            [downloadable] => false
            [genre] => SimpleXMLElement Object
                (
                )

            [release] => SimpleXMLElement Object
                (
                )

            [purchase-url] => SimpleXMLElement Object
                (
                    [@attributes] => Array
                        (
                            [nil] => true
                        )

                )

            [label-id] => SimpleXMLElement Object
                (
                    [@attributes] => Array
                        (
                            [nil] => true
                        )

                )

            [label-name] => SimpleXMLElement Object
                (
                )

            [isrc] => SimpleXMLElement Object
                (
                )

            [video-url] => SimpleXMLElement Object
                (
                    [@attributes] => Array
                        (
                            [nil] => true
                        )

                )

            [track-type] => demo
            [key-signature] => SimpleXMLElement Object
                (
                )

            [bpm] => SimpleXMLElement Object
                (
                    [@attributes] => Array
                        (
                            [nil] => true
                        )

                )

            [playback-count] => 7
            [download-count] => 0
            [comment-count] => 3
            [favoritings-count] => 0
            [title] => Kalimba
            [release-year] => SimpleXMLElement Object
                (
                    [@attributes] => Array
                        (
                            [nil] => true
                        )

                )

            [release-month] => SimpleXMLElement Object
                (
                    [@attributes] => Array
                        (
                            [nil] => true
                        )

                )

            [release-day] => SimpleXMLElement Object
                (
                    [@attributes] => Array
                        (
                            [nil] => true
                        )

                )

            [original-format] => raw
            [license] => all-rights-reserved
            [uri] => http://api.soundcloud.com/tracks/3617316
            [permalink-url] => http://soundcloud.com/rajanikant/kalimba
            [artwork-url] => SimpleXMLElement Object
                (
                    [@attributes] => Array
                        (
                            [nil] => true
                        )

                )

            [waveform-url] => http://waveforms.soundcloud.com/7eiQ56CHuzwB_m.png
            [user] => SimpleXMLElement Object
                (
                    [id] => 1219873
                    [permalink] => rajanikant
                    [username] => rajanikant
                    [uri] => http://api.soundcloud.com/users/1219873
                    [permalink-url] => http://soundcloud.com/rajanikant
                    [avatar-url] => http://i1.soundcloud.com/avatars-000001390005-a33xqd-large.jpg?77983a
                )

            [stream-url] => http://media.soundcloud.com/stream/7eiQ56CHuzwB
            [download-url] => http://soundcloud.com/rajanikant/kalimba/download
            [downloads-remaining] => 100
            [user-playback-count] => 6
            [user-favorite] => false
        )

)

This way I am printing but it not show records. 这样我可以打印,但不显示记录。

<?php echo $me1[1][0];?>

If your objects is $xml 如果您的对象是$xml

You want $xml->track->id 您想要$xml->track->id

Reference: 参考:

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM