exception handler not working with objects
| Bug #30230 | exception handler not working with objects | ||||
|---|---|---|---|---|---|
| Submitted: | 2004-09-25 17:02 UTC | Modified: | 2004-10-13 00:34 UTC | ||
| From: | auroraeosrose at hotmail dot com | Assigned: | helly (profile) | ||
| Status: | Closed | Package: | Scripting Engine problem | ||
| PHP Version: | 5.0.2 | OS: | * | ||
| Private report: | No | CVE-ID: | None | ||
[2004-09-25 17:02 UTC] auroraeosrose at hotmail dot com
Description:
------------
this is the 5.0 cvs snapshots NOT the 5.1 cvs snapshots
set_exception_handler(array($object, 'method')); or even set_exception_handler(array('Class', 'method')); does not work, setting just a function does set_exception_handler('function);
Reproduce code:
---------------
class dog {
function bug($exception)
{
var_dump($exception);
}
}
$dog = new dog();
set_exception_handler(array($dog, 'bug'));
throw new Exception('doggy');
Expected result:
----------------
Fatal error: Uncaught exception 'Exception' with message 'doggy' in [removed]:10 Stack trace: #0 {main} thrown in [removed] on line 10
Actual result:
--------------
object(Exception)#1 (6) {
["message:protected"]=>
string(5) "doggy"
["string:private"]=>
string(0) ""
["code:protected"]=>
int(0)
["file:protected"]=>
string(45) "[removed]"
["line:protected"]=>
int(8)
["trace:private"]=>
array(0) {
}
}
Patches
Pull Requests
History
AllCommentsChangesGit/SVN commits
[2004-09-25 17:03 UTC] auroraeosrose at hotmail dot com