Jump to content
  • 0

Помогите с многомерным массивом


JastinB
 Share

Question

Имеется многомерный массив

например


$arr[0] = array("name" => Вася, count => 10);
$arr[1] = array("name" => Петя, count => 20);
$arr[2] = array("name" => Вася, count => 40);

Необходимя найти все дублирующиеся значения $arr[][name] и если такие имеются то значения $arr[][count] сложить и удалить все елементы-дубли $arr[] кроме того в котором была занесена сумма всех.

На выходе должно получится вот что


$arr[0] = array("name" => Вася, count => 50);
$arr[1] = array("name" => Петя, count => 20);

Link to comment
Share on other sites

5 answers to this question

Recommended Posts

  • 0

Не могу додуматся как в цикле сделать так чтобы каждый елемент проверялся со всеми при этом учитывалось смещение счётчика при удалении елемента

Хм в новый массив, я пытался просто удалить елементы из старого, попробую

Edited by JastinB
Link to comment
Share on other sites

  • 0

Дубли удаляются но значения складыватся не хотят, вроде всё правильно...


for ($x=0; $x<count($arr); $x++)
{
if($x != count($arr))
{
for($z=1; $z<count($arr); $z++)
{
if($arr[$x][name] == $arr[$z][name])
{
$arr[$x][count] + $arr[$z][count];
unset($arr[$z]);
}
}
}
}

Edited by JastinB
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  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.

 Share

×
×
  • 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. See more about our Guidelines and Privacy Policy