Smarty assoziateves Array Problem

sergio2801

Grünschnabel
Guten Tag!

Console {debug}:
------------------------------------------------------------------------------------------------
Code:
{$menu_items} 	Array (4)
href => "javascript://"
label => ""
active => false
item_count => Array (6)
  0 => Array (3)
    anzahl => 1
    img_src => "http://localhost/seite/$userfiles/th..."
    img_url => "http://localhost/seite/member/photos..."
  1 => Array (3)
    anzahl => 2
    img_src => "http://localhost/seite/$userfiles/th..."
    img_url => "http://localhost/seite/member/photos..."
  2 => Array (3)
    anzahl => 3
    img_src => "http://localhost/seite/$userfiles/th..."
    img_url => "http://localhost/seite/member/photos..."
  3 => Array (3)
    anzahl => 4
    img_src => "http://localhost/seite/$userfiles/th..."
    img_url => "http://localhost/seite/member/photos..."
  4 => Array (3)
    anzahl => 5
    img_src => "http://localhost/seite/$userfiles/th..."
    img_url => "http://localhost/seite/member/photos..."
  5 => Array (3)
    anzahl => 6
    img_src => "http://localhost/seite/$userfiles/th..."
    img_url => "http://localhost/seite/member/photos..."
-----------------------------------------------------------------

wenn ich {$menu_items.$item_count.anzahl}, oder andere variation mit '[]' oder ohne
eingebe passiert garnix obwohl {$menu_items} gibt schon aus 'array'. Wie kann nicht auf anzahl zugreifen?
Danke im voraus
 
Zuletzt bearbeitet:
Wenn ich die Doku richtig verstehe, muss das so lauten:

Code:
{$menu_items.item_count[0].anzahl}

Übrigens wäre es ganz gut, wenn du die Ausgaben der Console in [code][/code] Tags packen würdest, damit die Formatierung erhalten bleibt.
 
Zurück