0

どうすればタイトルにアクセスできますか? $response->Element->Element1->Title を試しましたが、NULL が返されます。

array(1) {
["Element"]=>
object(stdClass)#10 (3) {
["Element1"]=>
object(stdClass)#11 (2) {
  ["Title"]=>
  string(16) "Test"
  ["Addresses"]=>
  object(stdClass)#12 (1) {
    ["Address"]=>
    object(stdClass)#13 (2) {
      ["Lines"]=>
      object(stdClass)#14 (1) {
        ["Line1"]=>
        string(17) "Test Loc"
      }
      ["PostCode"]=>
      string(7) "Postcode"
    }
  }
4

1 に答える 1

3

これを試してください:Elementオブジェクトではありません

$response['Element']->Element1->Title;
于 2013-08-16T11:44:04.083 に答える