PHP Magic Method __construct __destruct (i)

Source: Internet
Author: User

Slowly long search night, the moon hanging

__construct ()-this method is called each time a new object is created

__destruct ()-All references to an object are deleted or executed when an object is explicitly destroyed

<?php/** * Clear understanding of __construct () __destruct */class Example {public    static $link;    This method is loaded automatically when the class is instantiated __construct public    function __construct ($localhost, $username, $password, $db) {        self::$ link = mysql_connect ($localhost, $username, $password);        if (Mysql_errno ()) {die            (' ERROR: '. mysql_error ());        }        Mysql_set_charset (' UTF8 ');        mysql_select_db ($DB);    }    /**     * Link the database by __construct and execute the SQL statement     ... *////        when the class needs to be deleted or destroyed this class is automatically loaded __destruct this method public    function __destruct () {        echo ' <pre> ';        Var_dump (self:: $link);        Mysql_close (self:: $link);        Var_dump (self:: $link);    }} $mysql = new Example (' localhost ', ' root ', ' root ', ' test ');

Results:

Resource (2) of type (MySQL link) resource (2) of type (Unknown)

  

PHP Magic Method __construct __destruct (i)

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.