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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 31, 20262026-05-31T01:34:44+00:00 2026-05-31T01:34:44+00:00

I have the following values from a database call that I want to apply

  • 0

I have the following values from a database call that I want to apply some logic to. I thought I could originally use PHP’s max however this doesn’t appear to be the case.

I have three suppliers of a product. They might not all stock the item I am displaying, and they all offer a different margin, on a product by product basis though, so that is why I can’t just say generally supplier 1 is better than supplier 2 etc.

$supplier1Live = 1
$supplier2Live = 1
$supplier3Live = 0

$marginSupplier1 = 20
$marginSupplier2 = 40
$martinSupplier3 = 50

In this example I would want to use Supplier 2 as they stock the product supplier2Live = 1 and also have the better margin than the other supplier who stocks the product (supplier1)

My mind however is drawing a complete blank in how to code this?

I thought I could add it to an array giving:

$array = array(
    "supplier1" => array(
         "live" => 1,
         "margin" => 20
     ),
     "supplier2" => array(
         "live" => 1,
         "margin" => 40
     ),
     "supplier3" => array(
         "live" => 0,
         "margin" => 50
     )
);

And run something on that, but not sure what to.

  • 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-31T01:34:45+00:00Added an answer on May 31, 2026 at 1:34 am

    Filter the array using array_filter (filter by live==1), and then find the maximum out of the resultant array (maximum on the “margin” value)

    Like this, if I understand correctly

    $array = array(
        "supplier1" => array(
            "live" => 1,
            "margin" => 20
        ),
        "supplier2" => array(
            "live" => 1,
            "margin" => 40
        ),
        "supplier3" => array(
            "live" => 0,
            "margin" => 50
        )
    );
    $res = array_filter($array,function($v){return $v["live"];});
    $supplier = array_reduce($res, function($a, $b){
           return $a["margin"]>$b["margin"]?$a:$b;
    });
    print_r($supplier);
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have the following values that I want to place into a mysql db
I have the following function that is pulling data from a database. The ajax
So I have the following value from database $atag = <a href="http://blackberry.com/twitter" rel="nofollow">Twitter for
I have the following code which copies property values from one object to another
I have the following code to filter a grid from values inputed in a
I have the following select list from which the user can select multiple values.
I have the following method for looping through a table, changint some values in
I have following select results: Select t1.ID, t1.Value1 from t1 where t1.ID=1 Result: ID
I have the following values being returned in a column.. 0.250000 and 13.000000. I'd
lets say i have the following RGB values: R:129 G:98 B:87 Photoshop says the

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.