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

  • SEARCH
  • Home
  • 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 5972107
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 22, 20262026-05-22T20:36:42+00:00 2026-05-22T20:36:42+00:00

For reason that I’ll not discuss here, I’m forced to parse a large directory

  • 0

For reason that I’ll not discuss here, I’m forced to parse a large directory of files (we are talking 100.000 < x < 1.000.000+) and return the filelist as an array.

I’m already caching the file list, the problem is array_slice.

Yes, because there is a catch, this list of file must be “paginated” returning them in block of 16.

What I’m doing is this:

$items_per_page = 16;
$offset = ($current_page * $items_per_page) + $items_per_page;
array_slice($array,-$offset,$items_per_page);

It’s easy to see that in a few pages we’ll have huge offsets.
Also starting from page four (offset = -80) there is a huge performance hit.

What could I use instead of array_slice to achieve this sort of array pagination?

Thanks

  • 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-22T20:36:43+00:00Added an answer on May 22, 2026 at 8:36 pm

    If the array is numerically indexed (without skipping numbers) you could try to use a for loop.

    $items_per_page = 16;
    $offset = ($current_page * $items_per_page) + $items_per_page;
    $chunk = array();
    for($i=$offset;$i<$offset+$items_per_page;$i++){
        $chunk[] = $files[$i];
    }
    

    Edit:

    I just did some benchmarking to get an idea. On our server, with an array of 1 million items, processed 100 times each, array_slice() took 2.5689ms to process. Using a for loop took 0.0031ms.

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

Sidebar

Related Questions

Is there a reason that the STL does not provide functions to return an
Is there a reason that the object TreeSet.apply method returns SortedSet and not TreeSet
I have databases which manage files. The reason that there are multiple is that
Is there a reason that the Silverlight Ready WCF does not have an Interface
My application is freezing with a reason that I could not figure out, it
Is there a specific reason that JavaScript returns [object Object] as a return value
Is there a reason that they decided not to add the contains method (for
What is the reason that the second class is not standard layout? (Visual Studio
I have the following code, which does not work correctly for some reason that
I know that the reason that Microsoft came out with ASP.NET MVC was to

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.