0

通过 SOAP 返回的数据作为数组中的对象返回,如下所示。

Array (
    [LastPage] => true
    [ListOfContact] => stdClass Object (
        [Contact] => stdClass Object (
            [ContactId] => contactID
            [Description] =>
            [ContactEmail] => emailAddress
        )
    )
)

如何确保数据仅作为没有对象的数组返回?我正在使用带有 NO WSDL 选项的 SoapClient。

4

1 回答 1

0
$objectArray = YOUR_OBJECT;
foreach ($objectArray['ListOfContact'] AS $contactArray)
{
    $email = $contactArray['ContactEmail'];
    etc...
}

简单的例子,但应该让你上路!

于 2013-07-22T13:19:08.907 回答