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

php析构函数疑惑

时间:2015-10-20 12:29:32      阅读:188      评论:0      收藏:0      [点我收藏+]

标签:

<?php
class Test {
    public $start;
    public $end;
    
    public function __construct() {
        echo "__construct<br />";
        $this->start = microtime(true);
    }
    
    public function test() {
        echo "in test()<br />";
        throw new Exception("error", 500); // 抛出异常 
    }
    
    public function __destruct() {
        echo "__destruct<br />";
    }
}

$test = new Test();
$test->test();

方法里抛出异常后,不会调用析构函数:

技术分享

try异常后能调用析构函数:

<?php
class Test {
    public $start;
    public $end;
    
    public function __construct() {
        echo "__construct<br />";
        $this->start = microtime(true);
    }
    
    public function test() {
        echo "in test()<br />";
        try { // try 异常
            throw new Exception("error", 500); // 抛出异常 
        } catch(Exception $e) {
        }
    }
    
    public function __destruct() {
        echo "__destruct<br />";
    }
}

$test = new Test();
$test->test();

技术分享

php析构函数疑惑

标签:

原文地址:http://my.oschina.net/banbo/blog/519231

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