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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T14:10:36+00:00 2026-05-23T14:10:36+00:00

Lets say I have the following data: $data = array(‘av’,’ds’,’tg’,’ik’,’pk’,’np’,’rq’); I’m having trouble finding

  • 0

Lets say I have the following data:

$data = array('av','ds','tg','ik','pk','np','rq');

I’m having trouble finding out what tools to use to get the range of strings between two variables.

function sortrange ( $a, $b, $data )
{
    return $range;
}

For example:

sortrange('ds','np', $data);

Would return

array('ds','tg','ik','pk','np');

I would also like it be able to do backwards sorting, for example:

sortrange('np','tg');

Would return:

array('np','pk','ik','tg');

The closest function I found that might be usable was usort, but it couldn’t get anywhere close to what I wanted.

Thanks for any help in advance. 🙂

  • 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-23T14:10:37+00:00Added an answer on May 23, 2026 at 2:10 pm

    Note: The following function will just use the first occurance of $start and $end. If they repeat, the behavior may not be what you expect.

    function subset_range($array, $start, $end) {
        $start_index = array_search($start, $array);
        $end_index = array_search($end, $array);
        $min = min($start_index, $end_index);
        $max = max($start_index, $end_index);
        $ret = array_slice($array, $min, $max - $min + 1);
        return $start_index < $end_index ? $ret : array_reverse($ret);
    }
    
    $data = array('av','ds','tg','ik','pk','np','rq');
    
    print_r(subset_range($data, 'ds', 'np'));
    print_r(subset_range($data, 'np', 'tg'));
    

    Output:

    Array
    (
        [0] => ds
        [1] => tg
        [2] => ik
        [3] => pk
        [4] => np
    )
    Array
    (
        [0] => np
        [1] => pk
        [2] => ik
        [3] => tg
    )
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Lets say I have the following array in JavaScript: var skins = new Array('Light',
Lets say I have the following data: <XmlDataProvider x:Key=Values> <x:XData> <folder name=C:> <folder name=stuff
Lets say I have a table with some data like the following: ID text
I'm trying to decide which data structure to use for the following. Lets say
Lets say we have the following: create view view_1 as ( select key, data
Lets say I have a text file with the following data Username User ID
I have the following mysql table called test. lets say it has the data
Let's say I have a table containing following data: | id | t0 |
Let's say we have a solution with the following structure: Project.DAL - Data access
Lets say I have the following code: abstract class Animal case class Dog(name:String) extends

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.