I'm trying to pull XML data from a large XML feed url. The feed is gigantic. When I load it in Chrome after about 15 minutes my browser crashes. I'm basically just trying to get all the XML data out of the feed. Any ideas?
Asked
Active
Viewed 77 times
0
-
2Don't use chrome, use a command line tool like wget or curl and redirect the output to a file. – Alex Howansky Jan 08 '19 at 20:09
-
1If you want to process is - https://stackoverflow.com/questions/911663/parsing-huge-xml-files-in-php. – Nigel Ren Jan 08 '19 at 20:11
-
Would a curl like this work: curl www.xmlurl.com -o "file_1.txt" – Chris Jan 08 '19 at 20:15