Jump to content

Do something with highest variable from an array of variables


peterhuynh

Recommended Posts

I have a set of variables with randomly assigned integers. 

$a = 1;
$b = 3;
$c = -1;

I put them in an array and sort them from highest to lowest.

$all = array( 
 'a' => $a,
 'b' => $b,
 'c' => $c
);
arsort($all);

I want to do something with the highest variable only if it is greater than 0.


How can I accomplish that?

 

Thank you.

 

Link to comment
Share on other sites

OP here: I could be more specific.

 

The variables $a, $b, $c corresonding to three separate scripts: a.php, b.php, c.php.

 

If, among the three variables, $a ends up having the greatest value, then I want to execture a.php. And if $b ends up having the greatest value, then I want to execute b.php.

 

How can I do this?

 

Thanks.

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.