Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 4080378
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 20, 20262026-05-20T17:55:21+00:00 2026-05-20T17:55:21+00:00

I need to parse a large XML file (>1 GB) which is located on

  • 0

I need to parse a large XML file (>1 GB) which is located on a FTP server. I have a FTP stream aquired by ftp_connect(). (I use this stream for other FTP-related actions)

I know XMLReader is preferred for large XML files, but it will only accept a URI. So I assume a stream wrapper will be required. And the only ftp-function I know of which will allow me to retrieve only a small part of the file is ftp_nb_fget() in combination with ftp_nb_continue().

However, I do not know how I should put all of this together to make sure that a minimum amount of memory is used.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-20T17:55:22+00:00Added an answer on May 20, 2026 at 5:55 pm

    It looks like you may need to build on top of the low-level XML parser bits.

    In particular, you can use xml_parse to process XML one chunk of the XML string at a time, after calling the various xml_set_* functions with callbacks to handle elements, character data, namespaces, entities, and so on. Those callbacks will be triggered whenever the parser detects that it has enough data to do so, which should mean that you can process the file as you read it in arbitrarily-sized chunks from the FTP site.


    Proof of concept using CLI and xml_set_default_handler, which will get called for everything that doesn’t have a specific handler:

    php > $p = xml_parser_create('utf-8');
    php > xml_set_default_handler($p, function() { print_r(func_get_args()); });
    php > xml_parse($p, '<a');
    php > xml_parse($p, '>');
    php > xml_parse($p, 'Foo<b>Bar</b>Baz');
    Array
    (
        [0] => Resource id #3
        [1] => <a>
    )
    Array
    (
        [0] => Resource id #3
        [1] => Foo
    )
    Array
    (
        [0] => Resource id #3
        [1] => <b>
    )
    Array
    (
        [0] => Resource id #3
        [1] => Bar
    )
    Array
    (
        [0] => Resource id #3
        [1] => </b>
    )
    php > xml_parse($p, '</a>');
    Array
    (
        [0] => Resource id #3
        [1] => Baz
    )
    Array
    (
        [0] => Resource id #3
        [1] => </a>
    )
    php >
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a very large XML file that I need to parse so I
I have 2 questions: 1-I need to parse XML file and insert the data
I have a pretty large file that I need to parse in php, so
I have a very large data file (2GB-3GB). I need to parse some data
I am using InputSource to parse a large xml file (1.2 mb). I need
I need to parse a fairly large XML file (varying between about a hundred
I have a large string I need to parse, and I need to find
Need to parse a file for lines of data that start with this pattern
I need to parse several large size XML files (one is ~8GB, others are
I need to parse large XML Feeds (>100 mb) and persist into mysql database.

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.