Or perhaps,

$the_array = array();

Monu

-----Original Message-----
From: Wendell Brown [mailto:[EMAIL PROTECTED]
Sent: 12 June 2003 16:31
To: James E Hicks III; [EMAIL PROTECTED]
Subject: Re: [PHP] Easier way to delete all entries in an array?


On Thu, 12 Jun 2003 10:13:10 -0400, James E Hicks III wrote:

>There's got to be an easier way, is there?
>
>for ($i=0; $i < count($the_array); $i++){
>       array_pop($the_array);
>}

Maybe this:

unset( $the_array );




-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php


--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to