A
Alti
Guest
Gibt es eine Funktion, die prüft, ob ein Array Elemente hat?
MFG
Alti
MFG
Alti
Follow along with the video below to see how to install our site as a web app on your home screen.
Anmerkung: This feature may not be available in some browsers.
Es reicht sogar nur das array:Reicht auch.Code:if(empty($array)){ ...
if (array()) print 'foo'; //das wird nicht ausgegeben
if (array('foo')) print 'bar'; //aber das wird ausgegeben!