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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T15:31:50+00:00 2026-05-25T15:31:50+00:00

$vals = array(51, 23, 77, 3, 8, 31, 17, 102, 87); arsort($vals); From here,

  • 0
$vals = array(51, 23, 77, 3, 8, 31, 17, 102, 87);
arsort($vals);  

From here, how can I get the keys of the 3 first values? If I do $vals[0] it won’t work because it’ll return me the original [0] key before the arsort.

I want to get the original keys of 102, 87 and 77 after arsort.

  • 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-25T15:31:50+00:00Added an answer on May 25, 2026 at 3:31 pm

    Depending on what you need it for, one way is

    $keys = array_keys($vals);
    

    $keys[0] will contain the first key.
    $vals[$keys[0]] will contain the first value.

    An alternate way

    $part = array_slice($vals, 0, 3, true);
    

    $part will contain three $key => $value pairs for the first three entries.

    And for the first three keys, you can mix and match the above, such as:

    $firstThree = array_keys(array_slice($vals, 0, 3, true));
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

how can i get array value from php to javascript, and use the value
I have an array of double values vals, I need to randomly index into
I have a (N,3) array of numpy values: >>> vals = numpy.array([[1,2,3],[4,5,6],[7,8,7],[0,4,5],[2,2,1],[0,0,0],[5,4,3]]) >>> vals
Just need get some vals located in application.ini(main ini) in the Controller plugin I
I'm trying to write a function that returns an Array that I can pass
How can i programatically push an array of strings into generic Stack ? string
I've written a program to recursively sort an array. However, I get the following
If you have two arrays string[] a and int[] b how can you get
I am trying to get this code to show only fields that have values,
i would like to assign my array vals to properties of my object. like:

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.