Re: PEAR::SOAP returns objects instead of associative arrays

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



William Lovaton wrote:
Hi,

...

I need the nested objects to be arrays and your suggestion won't do
the trick and I don't want to be iterating over the array to convert
the objects.

well its either iterate the array and typecast or set the option, you best bet for finding out how/where/what regarding said option is to read the source:

http://cvs.php.net/pear/SOAP/

(I haven't any experience with PEAR::SOAP so I don't know offhand what/where
the option might be)

ALTERNATIVELY: you may want to change you code to make use of the objects
that are returned.


I was talking with some of the PEAR::SOAP maintainers and he told me there is an option/constant that controls this behavior. Does any one know where it is? I couldn't find it.

-William


El jue, 03-02-2005 a las 09:04 +0100, Jochem Maas escribiÃ:

William Lovaton wrote:

Hello,

I just found out that since version 0.7, PEAR::SOAP returns stdClass
objects instead of associative arrays.
http://pear.php.net/package-changelog.php?pacid=87&release=0.7.3

What is the reason for this? I _need_ to get associative arrays, how do
I revert to the old behavior?

lets say that you have a return value from PEAR::SOAP in the variable $a.... does the following give you what you need?:

$a = (array) $a;




-William




-- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php


[Index of Archives]     [PHP Home]     [Apache Users]     [PHP on Windows]     [Kernel Newbies]     [PHP Install]     [PHP Classes]     [Pear]     [Postgresql]     [Postgresql PHP]     [PHP on Windows]     [PHP Database Programming]     [PHP SOAP]

  Powered by Linux