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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 15, 20262026-06-15T04:55:49+00:00 2026-06-15T04:55:49+00:00

I have an array with values that change from time to time. It will

  • 0

I have an array with values that change from time to time. It will usually look like this:

Array ( [0] => 0 [1] => 0 [2] => 9876 [3] => 0 [4] => 0 [5] => 0 [6] => 0 [7] => 0 [8] => 0 [9] => 0 [10] => 0 [11] => 0 )

All of the Values will be 0 except for one (index location will change).
If more than one value is greater than 0, I need to execute a specific command.
Else, if only one value is greater than 0, I need to take that value and pass it to a specific command.

  • 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-15T04:55:50+00:00Added an answer on June 15, 2026 at 4:55 am

    Try this code.

    <?PHP
    
    $array = array(
    "1" => "0",
    "2" => "0",
    "3" => "0",
    "4" => "24",
    "5" => "0");
    
    $zero_plus_keys = 0;
    $zero_plus_val  = array();
    
    foreach($array as $key => $val)
    {
        if($val > 0)
        {
            $zero_plus_keys++;
            $zero_plus_val = array($key,$val);
        }
    }
    
    if($zero_plus_keys == 1)
    {
        echo "In array '".$zero_plus_val[0]."' key contains Greater than zero value. the value is = '".$zero_plus_val[1]."'";
    }
    elseif($zero_plus_keys > 1)
    {
        echo "More keys Greater than zero(0)";
    }
    else
    {
        echo "All keys contains zero(0)s only...";
    }
    
    ?>
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

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 multidimensional array that looks something like this: ourThing = array( 'id'
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.