php析构函数疑惑

WBOY
Release: 2016-06-23 13:24:21
Original
1019 people have browsed it

"; $this->start = microtime(true); } public function test() { echo "in test()
"; throw new Exception("error", 500); // 抛出异常 } public function __destruct() { echo "__destruct
"; }}$test = new Test();$test->test();
Copy after login

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


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

"; $this->start = microtime(true); } public function test() { echo "in test()
"; try { // try 异常 throw new Exception("error", 500); // 抛出异常 } catch(Exception $e) { } } public function __destruct() { echo "__destruct
"; }}$test = new Test();$test->test();
Copy after login

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!