login about faq

(Cross-posted from SO)

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?

asked Oct 19 '10 at 16:16

Nikki%20Erwin%20Ramirez's gravatar image

Nikki Erwin Ramirez ♦♦
1.2k217


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

link

answered Oct 19 '10 at 17:34

Nikki%20Erwin%20Ramirez's gravatar image

Nikki Erwin Ramirez ♦♦
1.2k217

Your answer
toggle preview

Follow this question

By Email:

Once you sign in you will be able to subscribe for any updates here

By RSS:

Answers

Answers and Comments

Markdown Basics

  • *italic* or __italic__
  • **bold** or __bold__
  • link:[text](http://url.com/ "title")
  • image?![alt text](/path/img.jpg "title")
  • numbered list: 1. Foo 2. Bar
  • to add a line break simply add two spaces to where you would like the new line to be.
  • basic HTML tags are also supported

Tags:

×63
×1
×1

Asked: Oct 19 '10 at 16:16

Seen: 519 times

Last updated: Oct 19 '10 at 17:34