Jump to content
  • 0

Перебор массива


alex_anderr
 Share

Question

$arr = ( [0] => 19 [id] => 19 [1] => 2 [two_id] => 2 [2] => 42 [three_id] => 42 );

( [0] => 20 [id] => 20 [1] => 2 [two_id] => 2 [2] => 43 [three_id] => 43 );

( [0] => 21 [id] => 21 [1] => 2 [two_id] => 2 [2] => 44 [three_id] => 44 );

В массиве представляю информацию как-то так.

Массив взят из таблицы mysql, где id, two_id, three_id столбцы.

Как получить все значения [three_id] или [2]?

не могу понять цикл foreach, уже много дней пытаюсь, но не могу :)

Сенкью )

Link to comment
Share on other sites

7 answers to this question

Recommended Posts

  • 0

по вашему примеру (первому):


<?php
$arr = array (
array (
0 => 19,
"id" => 19,
1 => 2,
"two_id" => 2,
2 => 42,
"three_id" => 42),
array (
0 => 20,
"id" => 20,
1 => 2,
"two_id" => 2,
2 => 43,
"three_id" => 43),
array (
0 => 21,
"id" => 21,
1 => 2,
"two_id" => 2,
2 => 44,
"three_id" => 44)
);
foreach($arr as $key => $val) {
echo $val["three_id"].'<br>';
}
?>

  • Like 2
Link to comment
Share on other sites

  • 0

На самом деле в первом примере одномерный массив, поэтому свой вариант решения через list() удалил ((

может и одномерный, но ведь ТС спросил:

Как получить все значения [three_id] или [2]?

а раз все, значит - многомерный.

UPD: просто в таком виде одномерный явно не печатается:


$arr = ( [0] => 19 [id] => 19 [1] => 2 [two_id] => 2 [2] => 42 [three_id] => 42 );
( [0] => 20 [id] => 20 [1] => 2 [two_id] => 2 [2] => 43 [three_id] => 43 );
( [0] => 21 [id] => 21 [1] => 2 [two_id] => 2 [2] => 44 [three_id] => 44 );

  • Like 1
Link to comment
Share on other sites

  • 0

На самом деле я не так задал вопрос, по не знанию некоторых функций.

Вообще задача выбрать все значения столбца в таблице в бд.

А массивы которые я показал - это строки в таблице, полученные fetch_assoc.

/facepalm )

--

Спасибо, кто помогал. Всем плюс. Заодно и разуму научили.

while все сделал.

Edited by alex_anderr
  • Like 1
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