0

次の配列構造があります。これは $response に渡される配列です

配列

(
    [inbox] => Array
        (
            [0] => Array
                (
                    [location] => 3
                    [ID] => 8ba84195fe79a89af1a4b5bd8c280621
                    [smsc_number] => +44******
                    [sent] => 2013-02-25 14:57:20
                    [coding] => Default GSM alphabet (no compression)
                    [remote_number] => +447****
                    [status] => Read
                    [body] => Yeppp
                )

        )

    [outbox] => Array
        (
            [0] => Array
                (
                    [location] => 2
                    [ID] => d22c4368fadd64e98fab64acb6b8fa34
                    [reference_number] => 1
                    [class] => 1
                    [coding] => Default GSM alphabet (no compression)
                    [remote_number] => *****
                    [status] => Sent
                    [body] => Test
                )

            [1] => Array
                (
                    [location] => 0
                    [ID] => f0c05e8dd2578d16d73bf5dbcf2ec3e6
                    [class] => 1
                    [coding] => Default GSM alphabet (no compression)
                    [remote_number] => 0****
                    [status] => UnSent
                    [body] => fdgg ddfgfdg fd
                )

            [2] => Array
                (
                    [location] => 1
                    [ID] => d7537acb1b3994ecc11369bac46c4bb6
                    [class] => 1
                    [coding] => Default GSM alphabet (no compression)
                    [remote_number] => 0****3
                    [status] => UnSent
                    [body] => fdgg ddfgfdg fd
                )

        )

)

私は受信トレイ配列の本体にのみ興味があります。これを取得するには 2 つのループを実行するか、$response[0] を実行するだけでよいと考えましたが、うまくいかないようです。私が持っているものは次のとおりです。

$response = $sms->Get();

foreach ($response[0] as $value) {
    foreach ($response as $value1) {
       echo($value1['body']); 
}

}

私は明らかに非常に愚かなことをしています-どんな助けも本当に感謝しています

4

1 に答える 1

0

これを試して

foreach ($response['inbox'] as $inb) {    
   echo($inb['body']); }
于 2013-02-25T16:24:45.637 に答える