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

The Archive Base Latest Questions

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

I’m trying to do something but I can’t find any solution, I’m also having

  • 0

I’m trying to do something but I can’t find any solution, I’m also having some trouble putting it into works so here is a sample code, maybe it’ll be enough to demonstrate what I’m aiming for:

$input = array
(
    'who' => 'me',
    'what' => 'car',
    'more' => 'car',
    'when' => 'today',
);

Now, I want to use array_splice() to remove (and return) one element from the array:

$spliced = key(array_splice($input, 2, 1)); // I'm only interested in the key...

The above will remove and return 1 element (third argument) from $input (first argument), at offset 2 (second argument), so $spliced will hold the value more.

I’ll be iterating over $input with a foreach loop, I know the key to be spliced but the problem is I don’t know its numerical offset and since array_splice only accepts integers I don’t know what to do.

A very dull example:

$result = array();

foreach ($input as $key => $value)
{
    if ($key == 'more')
    {
        // Remove the index "more" from $input and add it to $result.
        $result[] = key(array_splice($input, 2 /* How do I know its 2? */, 1));
    }
}

I first though of using array_search() but it’s pointless since it’ll return the associative index….

How do I determine the numerical offset of a associative index?

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

    Just grabbing and unsetting the value is a much better approach (and likely faster too), but anyway, you can just count along

    $result = array();
    $idx = 0; // init offset
    foreach ($input as $key => $value)
    {
        if ($key == 'more')
        {
            // Remove the index "more" from $input and add it to $result.
            $result[] = key(array_splice($input, $idx, 1));
        }
        $idx++; // count offset
    }
    print_R($result);
    print_R($input);
    

    gives

    Array
    (
        [0] => more
    )
    Array
    (
        [who] => me
        [what] => car
        [when] => today
    )
    

    BUT Technically speaking an associative key has no numerical index. If the input array was

    $input = array
    (
        'who' => 'me',
        'what' => 'car',
        'more' => 'car',
        'when' => 'today',
        'foo', 'bar', 'baz'
    );
    

    then index 2 is “baz”. But since array_slice accepts an offset, which is not the same as a numeric key, it uses the element found at that position in the array (in order the elements appear), which is why counting along works.

    On a sidenote, with numeric keys in the array, you’d get funny results, because you are testing for equality instead of identity. Make it $key === 'more' instead to prevent ‘more’ getting typecasted. Since associative keys are unique you could also return after ‘more’ was found, because checking subsequent keys is pointless. But really:

    if(array_key_exists('more', $input)) unset($input['more']);
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

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.