Andromeda
Andromeda

Reputation: 12897

php xml parsing

$xml = curl_exec($ch);

i hava an xml object like this which is retruned from a webservice. how can i parse this in PHP?????

Upvotes: 0

Views: 116

Answers (1)

phihag
phihag

Reputation: 287745

Use any of php's XML modules, for example SimpleXML.

Upvotes: 2

Related Questions