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

  • Home
  • SEARCH
  • 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 586109
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T15:04:23+00:00 2026-05-13T15:04:23+00:00

i m using array_combine() but it display error when in first array there is

  • 0

i m using array_combine() but it display error when in first array there is no value.
how to get rid of this

EDIT:

First array  
Distance_Array
Array
(
    [0] => 
)

School_ID_Array
Array
(
    [0] => 
)
 and i m using
$Coverage_ Array=array_combine($School_ID_Array,$Distance_Array);   

which results

Coverage_ Array
Array
(
    [] => 
)

i want that in first array, if any value is empty , 
then  Coverage_ Array key accept any default key
  • 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-13T15:04:23+00:00Added an answer on May 13, 2026 at 3:04 pm

    Use conditions like this:

    if (isset($some_var_or_array) && !empty($some_var_or_array)) {
        // some code which using $some_var_or_array value(s)
    }
    

    UDATED

    Here the function ArrayCombine(), which get three parameters: two arrays and third – the default parameter. The default parameter value will be set to the empty or nulled first array values:

    function ArrayCombine($array1, $array2, $default = 0)
    {
        foreach ($array1 as $key => $value) {
            if (!isset($value) || empty($value)) {
                $array1[$key] = $default;
            }
        }
        return array_combine($array1, $array2);
    }
    

    Here the example:

    $Distance_Array = array(
        1 => '',
    );
    
    $School_ID_Array = array(
        3 => 4,
    );
    
    $Coverage_Array = ArrayCombine($Distance_Array, $School_ID_Array);
    
    var_dump($Coverage_Array);
    
    /*
        var_dump output:
        array(1) {
            [24]=>
                int(4)
        }
    */
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 525k
  • Answers 525k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer maybe this will help: success: function(result){ $("#content").html(result); } In your… May 16, 2026 at 10:09 pm
  • Editorial Team
    Editorial Team added an answer On Silverlight: Not sure if Mac has out of browser… May 16, 2026 at 10:09 pm
  • Editorial Team
    Editorial Team added an answer HTML isn't really intended for exact display in that way.… May 16, 2026 at 10:09 pm

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

Related Questions

I am iterating over an array in MooTools but seeing additional items when iterating
This is my second attempt at a php contact form using Jquery and php
I am using an array formula (in Excel 2003) to count the number of
Does VBA support using an array of range variables? dim rangeArray() as range dim
I have 3 json arrays, each with information listed in the same format: Array:
I have an array that has keys and values. For eg: Array ( [name]
I am currently using the JQuery plugin Datepicker in my Symfony project with the
I'm encountering a problem while trying to serialize a multi-dimensioned array of integers via
The first line of code, called on every one of my application's pages, is:
I'm going to use the sample code from http://gettinggeneticsdone.blogspot.com/2009/11/split-apply-and-combine-in-r-using-plyr.html for this example. So, first,

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.