Ben aşağıda benzer tanımlanan nesneleri bir dizi var:
$scores = array();
// Bob round 1
$s = new RoundScore();
$s->Round_Name = 'Round 1';
$s->Player_Name = 'Bob';
$s->Score = 10;
$scores[0] = $s;
// Bob round 2
$s = new RoundScore();
$s->Round_Name = 'Round 2';
$s->Player_Name = 'Bob';
$s->Score = 7;
$scores[1] = $s;
// Jack round 1
$s = new RoundScore();
$s->Round_Name = 'Round 1';
$s->Player_Name = 'Jack';
$s->Score = 6;
$scores[2] = $s;
// Jack round 2
$s = new RoundScore();
$s->Round_Name = 'Round 2';
$s->Player_Name = 'Jack';
$s->Score = 12;
$scores[3] = $s;
Yoluyla ve bir tabloya $scores
nesne dökümü ben döngü, bu gibi bir şey olacak olursa:
Round_Name Player Score ---------------------------- Round 1 Bob 10 Round 2 Bob 7 Round 1 Jack 6 Round 2 Jack 12
Benim istediğim, ancak, böyle bir şey olur:
Player Round 1 Round 2 Total ------------------------------- Bob 10 7 17 Jack 6 12 18
Ben orada olmak ve Sadece ben nesneler inşa şeklini değiştirmek değil diyelim olacak kaç mermi veya oyuncular önceden bilmek için gitmiyorum.
Php bunu yapmak için en etkili yolu nedir?