Aryan PrajapatKnowledge Contributor
What are constructors and destructors in PHP?
What are constructors and destructors in PHP?
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.
Questions | Answers | Discussions | Knowledge sharing | Communities & more.
When a PHP class object is created or destroyed, special type functions named function Object() { [native code] } and destructor are automatically called. The function Object() { [native code] } is the more helpful of the two since it allows you to pass arguments along with a new object when creating it, which can then be used to set up variables on the object