0

I have something like:

$client = new Zend_XmlRpc_Client('<XML-RPC URL>');
$result = $client->call('<method name>', array( ... ));

I get an XML string in $result. Is Zend capable of marshalling this XML into some object or associative array?

If Zend doesn't marshall this automatically and I have to do so using plain PHP, how is it best done?

Charles
  • 50,943
  • 13
  • 104
  • 142
Nikki Erwin Ramirez
  • 9,676
  • 6
  • 30
  • 32

1 Answers1

0

Meh. I'm settling for SimpleXML (a PHP5 module), as suggested here. I don't need anything complex anyway.

Nikki Erwin Ramirez
  • 9,676
  • 6
  • 30
  • 32