You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

33 lines
375 B

--TEST--
Catching an exception in a constructor
--FILE--
<?php
class MyObject
{
function __construct()
{
throw new Exception();
echo __METHOD__ . "() Must not be reached\n";
}
function __destruct()
{
echo __METHOD__ . "() Must not be called\n";
}
}
try
{
new MyObject();
}
catch(Exception $e)
{
echo "Caught\n";
}
?>
===DONE===
--EXPECT--
Caught
===DONE===