Guest User

Untitled

a guest
Jul 4th, 2012
29
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1. PHP: how to parse a huge xml file
  2. <?xml version="1.0" encoding="ISO-8859-1"?>
  3. <items>
  4. <item>
  5. <title><![CDATA[...]]></title>
  6. <description><![CDATA[...]]></description>
  7. <link><![CDATA[...]]></link>
  8. <city><![CDATA[...]]></city>
  9. <state><![CDATA[...]]></state>
  10. <position><![CDATA[...]]></position>
  11. <company><![CDATA[...]]></company>
  12. <category_id><![CDATA[...]]></category_id>
  13. <job_id>...</job_id>
  14. <salary><![CDATA[...]]></salary>
  15. <term><![CDATA[...]]></term>
  16. </item>
  17.  
  18. ....
  19.  
  20. </items>
  21.  
  22. ini_set("memory_limit", "128M")
Advertisement
Add Comment
Please, Sign In to add comment