2010-10-05 4 views
0

Voici un petit aperçu des avantages:Tableau multidimensionnel PHP

Comment afficher les valeurs 1, 2, 3 etc. dans leur troisième tableau?

$meta_boxes = array 

    (
     "checkbox" => array 
     (
       "name" => "checkbox", 
       "title" => "", 
       "description" => "This is an example of a checkbox field.", 
       "type" => "checkbox", 
       "rows" => "", 
       "width" => "", 
       "options" => array 
       (
        "1" => "Value 1", 
        "2" => "Value 2", 
        "3" => "Value 3" 
      ) 
), 

Répondre

2

$meta_boxes['checkbox']['options']['1'] vous donnera la chaîne « Valeur 1 » du tableau, et vous pouvez faire ce que vous voulez avec cette valeur.

Vous devriez maintenant être capable de comprendre comment accéder aux deux autres.

3
$str = ''; 
foreach($meta_boxes['checkbox']['options'] as $k => $v) { 
    $str .= $v . "\n"; 
}