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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 2, 20262026-06-02T13:43:16+00:00 2026-06-02T13:43:16+00:00

I have a common pattern which Im sure there must be a built-in array

  • 0

I have a common pattern which Im sure there must be a built-in array function in PHP to handle but just can’t see it.

I have multiple arrays such as the following:

$testArray = array (
    'subArray1' => array(
        'key1' => "Sub array 1 value 1",
        'key2' => "Sub array 1 value 1"
    ),
    'subArray2' => array(
        'key1' => "Sub array 2 value 1",
        'key2' => "Sub array 2 value 2"
    )
);

I need to get the key1 values from each subArray, of which there can be any number.

I always end up just looping over each array to get the required values, but I’m sure there must be an easier, more efficient way to handle this.

I am currently using the following simple foreach to parse the arrays:

$preparedSubs = array();

foreach($testArray as $subArray) {
    $preparedSubs[] = $subArray['key1'];
}

It’s as short as I can make it, but as I said I’m sure there is a PHP construct that would handle this better.

  • 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-02T13:43:18+00:00Added an answer on June 2, 2026 at 1:43 pm

    Before PHP 5.5, this would be the most efficient solution:

    $key = 'key1';
    
    $output = array_map(function($item) use ($key) {
        return $item[$key];
    }, $testArray);
    

    As of PHP 5.5, there is now an array_column function for this (see COil’s answer).

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm sure this must be a common pattern in iOS apps. I have a
I have this common issue of 'new line' in php-csv which is making me
I am implementing a few strategies (Strategy Pattern) which have some common behavior and
I have a common validation function function connect_and_update_destination() { var flag = true; //
I have a common script which Im including in my PHPcron files and the
I have a common resource, which I want 1 and only 1 instance of
Im looking to have a common parent function like so void main (param 1,
I have been looking for this pattern for some time but still did not
There are a few different common patterns for returning the result of a function
I'm working with Spree, which uses Rails engines extensively. A common pattern I find

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.