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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 9, 20262026-06-09T05:43:27+00:00 2026-06-09T05:43:27+00:00

I have an array of values that are required for my app. If the

  • 0

I have an array of values that are required for my app. If the values are not provided, i’d like to fill them with default values. For example, if my app expects three values

$default_vals = array('foo','bar','baz');
$given_vals = array('faz',NULL);

I need result:

$combined = array('faz','bar','baz')

Basically fill in array indexes that are missing with the default one.

It’s almost 5:00 and brain fried. I thought this could easily be done with an array_function() like array_intersect() or merge().

Thanks.

Edit: By the way..the $given_vals could contain the same value as the $default, so solution should work even if this is the case.

  • 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-09T05:43:28+00:00Added an answer on June 9, 2026 at 5:43 am

    You need to filter the NULLs out of the input first, then you can do a so called array union (the array union operator is +, see Array operatorsDocs):

    $result = array_filter($given_vals) + $default_vals;
    

    Take care that array_filterDocs will remove as well values like FALSE or an empty string. So I’m not 100% sure if that suits your needs. In case not, make it more specific:

    $result = array_filter($given_vals, function($v) {return !is_null($v);}) 
              + $default_vals;
    ksort($result);
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

i have a multidimensional array whose index/keys (not the values) are like this: this
I just have the array of 15 values that all need to be inserted
I have one array that is filled by mysql_query. Values that are in this
I have a helper class that is passed an array of values that is
I have a set of values that I'm pushing into an array in the
I have an array that has keys and values. For eg: Array ( [name]
I have an array that contains the RGB colour values for each pixel in
I have an array that has a lot of values including a lot of
Lets say I have an array numbers that contains the following values: int numbers
I have php code that puts some values into an Array as follows: $hunter=addslashes($MessageArray[1]);

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.