这个问题在这里已有答案:
你能帮忙用循环迭代这个stdClass吗?我想只打印值。
stdClass Object ( [GetInfoResult] => stdClass Object ( [string] => Array ( [0] => My Value 1 [1] => My Value 2 [2] => My Value 3 [3] => My Value 4 [4] => My val 5 [5] => My val 6 [6] => My last val ) ) )
例:
要打印的值位于嵌套在对象中的数组中。只需访问该阵列并使用foreach
。
foreach ($object->GetInfoResult->string as $string) {
echo $string;
}