Hallo allerseits
Mein mehrdimensionales Array $albums schaut wie folgt aus:
Array (
[0] => Array ( [title] => Neu [date] => 1154529168 )
[1] => Array ( [title] => Marseillan-Plage [date] => 1154524166 )
[2] => Array ( [title] => Spörtlä im Chloschtär [date] => 1152717281 )
[3] => Array ( [title] => Objekte [date] => 1151665135 )
[4] => Array ( [title] => Lumpy Nr. 1 [date] => 1151653219 )
[5] => Array ( [title] => test 2 [date] => 1151579685 )
[6] => Array ( [title] => Natur [date] => 1151574035 )
[7] => Array ( [title] => Kanuweekend2006 [date] => 1151573957 )
)
Nun möchte ich die Datum-keys vom UNIX-timestamp zum europäischen Datum im Format 12.12.2006 konvertieren.
Das habe ich so probiert:
foreach ($albums as $key => $row){ $row['date'] = date("d.m.y", $row['date']); }
Leider funktioniert das aber nicht so wirklich, d.h. es steht immernoch der UNIX-timestamp im Array und nicht mein gewünschtes Datum.
Kann mir jemand weiterhelfen?
Vielen Dank!
Gruss doni