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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 1, 20262026-06-01T12:18:09+00:00 2026-06-01T12:18:09+00:00

Suppose I have an array like this: $array = array(a,b,c,d,a,a); and I want to

  • 0

Suppose I have an array like this:

$array = array("a","b","c","d","a","a");

and I want to get all the keys that have the value “a”.

I know I can get them using a while loop:

while ($a = current($array)) {
    if ($a == 'a') {
        echo key($array).',';
    }
    next($array);
}

How can I get them using a foreach loop instead?

I’ve tried:

   foreach ($array as $a) {
        if ($a == 'a') {
            echo key($array).',';
        }

    }

and I got

1,1,1,

as the result.

  • 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-01T12:18:10+00:00Added an answer on June 1, 2026 at 12:18 pm

    If you would like all of the keys for a particular value, I would suggest using array_keys, using the optional search_value parameter.

    $input = array("Foo" => "X", "Bar" => "X", "Fizz" => "O");
    $result = array_keys( $input, "X" );
    

    Where $result becomes

    Array ( 
      [0] => Foo 
      [1] => Bar 
    )
    

    If you wish to use a foreach, you can iterate through each key/value set, adding the key to a new array collection when its value matches your search:

    $array = array("a","b","c","d","a","a");
    $keys = array();
    
    foreach ( $array as $key => $value )
      $value === "a" && array_push( $keys, $key );
    

    Where $keys becomes

    Array ( 
      [0] => 0 
      [1] => 4 
      [2] => 5 
    )
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Suppose i have a array like this : Array( '1' => Array( ID =>
Hi I am using Mathematica 5.2. Suppose I have an array list like In[2]:=lst=Tuples[{0,1},4]
Suppose I have a table view, and I want to implement something like this:
Suppose I have two arrays like the following: $arr2 = array(array(first, second), array(third, fourth));
Suppose I have an array that mimics a database table. Each array element represents
I have a question about Quantifiers. Suppose that I have an array and I
I have an array with a series of event IDs organized like this: $event['year']['month']['day']
I have a code snippet that looks like this: [tableView beginUpdates]; [tableView deleteRowsAtIndexPaths:[NSArray arrayWithObject:indexPath]
Suppose I have something like this int strLen; printf(Please enter a number: ); scanf(%d,
I have a array which contains values like this See below for script sample

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.