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.

 

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.

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.