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 7604281
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 30, 20262026-05-30T23:52:13+00:00 2026-05-30T23:52:13+00:00

Does anyone know what the best (or a really good) way is to load

  • 0

Does anyone know what the best (or a really good) way is to load external files (about 10-20) from an api with performance in mind. Each session has different content. Currently I try “file_get_contents” but experience serious performance issues. I’m not really familiar with Curl but it seems performance wise to beat the good old PHP way. Any ideas/examples?

  • 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-30T23:52:15+00:00Added an answer on May 30, 2026 at 11:52 pm

    You could also use curl multi to grab multiple files at once, there is a tutorial here:

    http://www.phpied.com/simultaneuos-http-requests-in-php-with-curl/

    <?php
    //Copy & pasted from the above link
    function multiRequest($data, $options = array()) {
      // array of curl handles
      $curly = array();
      // data to be returned
      $result = array();
      // multi handle
      $mh = curl_multi_init();
      // loop through $data and create curl handles
      // then add them to the multi-handle
      foreach ($data as $id => $d) {
        $curly[$id] = curl_init();
        $url = (is_array($d) && !empty($d['url'])) ? $d['url'] : $d;
        curl_setopt($curly[$id], CURLOPT_URL,            $url);
        curl_setopt($curly[$id], CURLOPT_HEADER,         0);
        curl_setopt($curly[$id], CURLOPT_RETURNTRANSFER, 1);
        // post?
        if (is_array($d)) {
          if (!empty($d['post'])) {
            curl_setopt($curly[$id], CURLOPT_POST,       1);
            curl_setopt($curly[$id], CURLOPT_POSTFIELDS, $d['post']);
          }
        }
        // extra options?
        if (!empty($options)) {
          curl_setopt_array($curly[$id], $options);
        }
        curl_multi_add_handle($mh, $curly[$id]);
      }
      // execute the handles
      $running = null;
      do {
        curl_multi_exec($mh, $running);
      } while($running > 0);
      // get content and remove handles
      foreach($curly as $id => $c) {
        $result[$id] = curl_multi_getcontent($c);
        curl_multi_remove_handle($mh, $c);
      }
      // all done
      curl_multi_close($mh);
      return $result;
    }
    ?>
    
    <?php
    $data = array(
      'http://search.yahooapis.com/VideoSearchService/V1/videoSearch?appid=YahooDemo&query=Pearl+Jam&output=json',
      'http://search.yahooapis.com/ImageSearchService/V1/imageSearch?appid=YahooDemo&query=Pearl+Jam&output=json',
      'http://search.yahooapis.com/AudioSearchService/V1/artistSearch?appid=YahooDemo&artist=Pearl+Jam&output=json'
    );
    $r = multiRequest($data);
    
    echo '<pre>';
    print_r($r);
    /*
    Array
    (
        [0] => {"ResultSet":{"totalResultsAvailable":"633","totalResultsReturned":...
        [1] => {"ResultSet":{"totalResultsAvailable":"105342","totalResultsReturned":...
        [2] => {"ResultSet":{"totalResultsAvailable":10,"totalResultsReturned":...
    )
    */
    ?>
    

    Or curl php docs http://www.php.net/manual/en/function.curl-multi-init.php

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Does anyone know the best way to create a SQL Server CE (Compact 3.5)
does anyone know the best way to insert a column in a datatable at
Is it possible, or does anyone know the best way to capture MSN chats?
Does anyone know the best way I can create a configuration for a Console/Command-line
Does anyone know of any best practices or 'standard' techniques for implementing authentication between
Does anyone know of a good Command Prompt replacement? I've tried bash/Cygwin, but that
Does anyone know a good Java lib that will hook into SVN so I
Does anyone know if there is any tool or a way to apply automated
Does anyone have a recommended way to find definitions in header files when using
Does anyone know a simple way to manage several tableViews in one viewController? Here

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.