mirror of
https://github.com/php/php-src.git
synced 2024-11-25 10:54:15 +08:00
31 lines
486 B
PHP
31 lines
486 B
PHP
--TEST--
|
|
Bug #47771 (Exception during object construction from arg call calls object's destructor)
|
|
--FILE--
|
|
<?php
|
|
function throw_exc() {
|
|
throw new Exception('TEST_EXCEPTION');
|
|
}
|
|
|
|
class Test {
|
|
|
|
public function __construct() {
|
|
echo 'Constr' ."\n";
|
|
}
|
|
|
|
public function __destruct() {
|
|
echo 'Destr' ."\n";
|
|
}
|
|
|
|
}
|
|
|
|
try {
|
|
|
|
$T =new Test(throw_exc());
|
|
|
|
} catch( Exception $e) {
|
|
echo 'Exception: ' . $e->getMessage() . "\n";
|
|
}
|
|
?>
|
|
--EXPECT--
|
|
Exception: TEST_EXCEPTION
|