Does unsetting an array of objects unset just the array or also all the objects?

I have an array of objects. If I call unset($array), will it unset all objects in the array AND the array or just the array? Let's assume these objects are referenced nowhere else.
 
Back
Top