问题与SOAP返回数据作为STDCLASS对象

时间:2013-07-22 13:00:04

标签: php soap-client

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

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

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

1 个答案:

答案 0 :(得分:0)

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

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