array structure as with array_reverse preserve_keys
- From: "Bosconian" <bosconian@xxxxxxxxxxx>
- Date: Mon, 17 Apr 2006 19:54:25 -0700
I have an array defined as follows:
$scores[2] = 19;
$scores[4] = 25;
$scores[2] = 23;
$scores[4] = 25;
.... where the key is the team # and the value is the points.
I am outputting the key/values as follows:
foreach ($scores as $team => $points) {
echo "Team: $team, Points: $points, Difference: " . ($scores[0] -
$scores[1]) . "<br>";
$scores = array_reverse($scores, false);
}
Curent output (before array_reverse):
Game 1
Team: 2, Points: 19, Difference: 0
Team: 4, Points: 25, Difference: 6
Game 2
Team: 2, Points: 23, Difference: 0
Team: 4, Points: 25, Difference: 2
A problem occurs when calculating the point "Difference". The first pass of
the foreach loop (above) is incorrect, but the second pass is correct
(below.) This is due from the use of the function array_reverse(). By
setting the preserve_keys to false, the function changes the structure of
the array.
Desired output (after array_reverse):
Game 1
Team: 2, Points: 19, Difference: -6
Team: 4, Points: 25, Difference: 6
Game 2
Team: 2, Points: 23, Difference: -2
Team: 4, Points: 25, Difference: 2
Question: how can the above array be structured like this from the start?
.
- Follow-Ups:
- Re: array structure as with array_reverse preserve_keys
- From: Jerry Stuckle
- Re: array structure as with array_reverse preserve_keys
- Prev by Date: Re: PHP chat room server
- Next by Date: Re: PHP chat room server
- Previous by thread: file vs database. mini chat script
- Next by thread: Re: array structure as with array_reverse preserve_keys
- Index(es):
Relevant Pages
|