Re: [PHP] Unsetting Array Element

2002-11-13 Thread BigDog
In theory the memory should be free and the array should be smaller... On Wed, 2002-11-13 at 07:11, Monty wrote: > Does unsetting an array element make the array smaller? For example, if I > have two elements in an array... > > $array = ("title" => "Title of Document", > "cont

[PHP] Unsetting Array Element

2002-11-12 Thread Monty
Does unsetting an array element make the array smaller? For example, if I have two elements in an array... $array = ("title" => "Title of Document", "content" => "Ten paragraphs of text in here..." ); ...then issue this command... unset ($array['content']); ...will this ma