Created
May 5, 2015 07:43
-
-
Save iamaravi/98ef17fad85a163a34e7 to your computer and use it in GitHub Desktop.
xmlparse
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$xmlDOC ='<root> | |
<status>Success</status> | |
<error_code>0</error_code> | |
<cmessage>Delivery challans created</cmessage> | |
<quote_id>1234567</quote_id> | |
<items> | |
<item> | |
<item_id>000005</item_id> | |
<item_qty>5.000</item_qty> | |
<item_price>.072</item_price> | |
<available_stock>172.000</available_stock> | |
<branch_id>001</branch_id> | |
</item> | |
<item> | |
<item_id>000006</item_id> | |
<item_qty>5.000</item_qty> | |
<item_price>.072</item_price> | |
<available_stock>172.000</available_stock> | |
<branch_id>001</branch_id> | |
</item> | |
</items> | |
</root>'; | |
$data = json_decode(json_encode((array) simplexml_load_string($xmlDOC)), 1); | |
echo "<pre>"; | |
print_r($data); | |
exit; | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment