
Xperd - 2011-04-12 15:46:34
Hi,
crXml is great class. I need help because I could not get right value to array.
include_once('crXml.php');
$xml = new crXml();
$data = '<?xml version="1.0" encoding="UTF-8"?'.'><records><price>12345</price></records>';
$xml->loadXML($data);
$my_array['price'] = $xml->records->price;
print_r($my_array['price']);
Value of $my_array['price'] is object, but it`s value should be 12345.
Please could you help me?
Dušan