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.
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
If that array contains the only reference to the object, then yes. Otherwise no. Also, something to keep in mind from the PHP Documentation: