phpbar.de logo

Mailinglisten-Archive

[php] =?iso-8859-1?Q?RE:_=5Bphp=5D_Arrays_l=F6schen?=

[php] =?iso-8859-1?Q?RE:_=5Bphp=5D_Arrays_l=F6schen?=

Johannes Schmidt joh_(at)_exozet.com
Wed, 26 Apr 2000 10:47:20 +0200


> wie schaffe ich es das ein Array, das 3 Elemente enthält wieder
> völlig leer
> ist sprich count($array) soll 0 sein.

while (list($key, $val) = each($array)) unset($array[$key]);

Beispiel:
$array = array("a" => "tick", "b" => "trick", "c" => "track");
print count($array);
while (list($key, $val) = each($array)) unset($array[$key]);
print count($array);

Johannes



php::bar PHP Wiki   -   Listenarchive