on 15/01/03 7:52 AM, Scott Fletcher ([EMAIL PROTECTED]) wrote:

> How to do the proper way of emptying hte array??
> 
> Example...
> 
> $a[0] = "test1";
> $a[1] = "test2";
> $a[2] = "test3";
> $a[3] = "test4";
> 
> $a = "";    <-- Is this hte proper way to do it????

unset($a);

http://php.net/unset

Justin


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

Reply via email to