Jump to content
  • 0

Простой двумерный массив


people2010
 Share

Question

Не получается вывести не ассоциативный а простой 2-мерный массив. Пробую так, чего-то не срабатывает.

$mars = array('ddd','sss','ppp');
$snikers = array('f1','f2','f3');
$bounty = array('tet-a-tet','nahinka','aromat');

$shikolad = array($mars,$snikers,$bounty);

for($i=0; $i<count($shikolad); $i++)
{
$induk = key($shikolad);

for($d=0; $i<count($shikolad["$induk"]); $d++){
echo ' '.$shikolad["$induk"][$d];

}
next($induk);
}

Link to comment
Share on other sites

4 answers to this question

Recommended Posts

  • 0

Всё понял во так:

<h1>
<pre>
<?php

$mas = array(
array('Баламут', 35, 'Заец'),
array('Серия',"Татан",235),
array("Дровосек","Питер","УРА")
);

for($i=0; $i<count($mas); $i++){
echo '<br/>';
for($j=0; $j<count($mas[$i]); $j++){
echo $mas[$i][$j].' ';
}

}
?>

Скажите, а динамические массивы на пхп бывают?

Edited by people2010
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