码迷,mamicode.com
首页 > Web开发 > 详细

PHP 魔术方法 __construct __destruct (一)

时间:2014-11-25 01:37:31      阅读:154      评论:0      收藏:0      [点我收藏+]

标签:des   blog   io   ar   os   sp   数据   on   div   

慢慢长寻夜,明月高空挂

__construct()  - 在每次创建新对象时先调用此方法

__destruct()   - 对象的所有引用都被删除或者当对象被显式销毁时执行

<?php

/**
 * 清晰的认识__construct() __destruct
 */
class Example {

    public static $link;
    //在类实例化的时候自动加载__construct这个方法
    public function __construct($localhost, $username, $password, $db) {
        self::$link = mysql_connect($localhost, $username, $password);
        if (mysql_errno()) {
            die(‘错误:‘ . mysql_error());
        }
        mysql_set_charset(‘utf8‘);
        mysql_select_db($db);
    }

    /**
     * 通过__construct链接好数据库然后执行sql语句......
     */
    
    //当类需要被删除或者销毁这个类的时候自动加载__destruct这个方法
    public function __destruct() {
        echo ‘<pre>‘;
        var_dump(self::$link);
        mysql_close(self::$link);
        var_dump(self::$link);
    }

}

$mysql = new Example(‘localhost‘, ‘root‘, ‘root‘, ‘test‘);

结果:

resource(2) of type (mysql link)
resource(2) of type (Unknown)

  

PHP 魔术方法 __construct __destruct (一)

标签:des   blog   io   ar   os   sp   数据   on   div   

原文地址:http://www.cnblogs.com/uduemc/p/4117824.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!