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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 15, 20262026-06-15T14:21:34+00:00 2026-06-15T14:21:34+00:00

I am trying to do a paging from single array $input = Array (

  • 0

I am trying to do a paging from single array

$input = Array
        (
            [0] => 'A',
            [1] => 'B',
            [2] => 'C'
            ...

        )

example $show_per_page=2;

in page 1

paging($input,$page, $show_per_page);

$output = Array(
                [0]=>'A',
                [1]=>'B'
        );

in page 2

$output = Array(                
                [2]=>'B'
        );

I Know about array_slice but it is not right for this case.Anyone know how to do this?

  • 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-06-15T14:21:36+00:00Added an answer on June 15, 2026 at 2:21 pm

    Yes, array_slice is exactly what you want. It’s the most efficient way to do this. Here’s what you need.

    function get_page(array $input, $pageNum, $perPage) {
        $start = ($pageNum-1) * $perPage;
        $end = $start + $perPage;
        $count = count($input);
    
        // Conditionally return results
        if ($start < 0 || $count <= $start) {
            // Page is out of range
            return array(); 
        } else if ($count <= $end) {
            // Partially-filled page
            return array_slice($input, $start);
        } else {
            // Full page 
            return array_slice($input, $start, $end - $start);
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am trying to rebuild my page to go from old-school recordset paging, to
I'm trying to wrap my head around custom paging in the ASP.NET Gridview, but
I am trying to retrieve data from a List<T> for paging purposes. How can
I have been trying since yesterday to get google like paging, but each time
I'm trying to select DISTINCT rows from a view using ROW_NUMBER() OVER for paging.
I am trying to process millions of records from my table (size is about
I'm trying to add paging functionality to a search items page. so I have
I'm trying to make data grid with paging using ExtJs framework, but unfortunately my
I'm trying to implement paging in a CellTable but it's currently showing 1-10 of
I'm trying to implement paging in a custom ListAdapter. Right now I'm just making

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.