ID:               19033
 Updated by:       [EMAIL PROTECTED]
-Summary:          set_error_handler() to accepts object/method tuple
 Reported By:      [EMAIL PROTECTED]
-Status:           Open
+Status:           Critical
 Bug Type:         Program Execution
 Operating System: Windows
 PHP Version:      4.2.1
-Assigned To:      
+Assigned To:      edink
 New Comment:

Making this critical and assigned to edin.



Previous Comments:
------------------------------------------------------------------------

[2002-10-10 11:00:07] [EMAIL PROTECTED]

OS update.


------------------------------------------------------------------------

[2002-10-10 10:55:56] [EMAIL PROTECTED]

Verified:
linux works

Win32 snapshot from snaps.php.net seems to be b0rked.

Can't check out CVS HEAD and test (besides that it's currently broken
because of some recent changes).

Reopening and thanks for insisting it doesn't work ;-)

------------------------------------------------------------------------

[2002-10-10 10:44:30] [EMAIL PROTECTED]

works fine for me with a 2 days old HEAD. you're doing something
wrong.

roman@freepuppy ~ 1005:0 > php -v
PHP 4.4.0-dev (cli), Copyright (c) 1997-2002 The PHP Group
Zend Engine v1.4.0, Copyright (c) 1998-2002 Zend Technologies
roman@freepuppy ~ 1006:1 > tmp/scratch2

Notice: Undefined variable:  fafa in /usr/home/roman/tmp/scratch2 on
line 13
AAError Handled
roman@freepuppy ~ 1007:0 > uname -sr
FreeBSD 4.7-RC
roman@freepuppy ~ 1008:0 > < tmp/scratch2
#!/usr/bin/env php
<?

    error_reporting(E_ALL);

    class Test
    {
        function ErrorHandler($a,$b)
        {
            print("Error Handled\n");
        }
    }
    $error=new Test();
    print("AA".$fafa);
    set_error_handler(array($error, 'ErrorHandler'));
    print("AA".$fafa);

roman@freepuppy ~ 1009:0 > 



------------------------------------------------------------------------

[2002-10-10 10:34:37] [EMAIL PROTECTED]

<?
class Test{
        function ErrorHandler($a,$b){
                print("Error Handled");
        }
}
$error=new Test();
print("AA".$fafa);
set_error_handler(array($error, 'ErrorHandler'));
print("AA".$fafa);
?>

Result:

------------------------------------
Notice: Undefined variable: fafa in
E:\server\www\sports\futur\test.phtml on line 8
AA
Notice: Array to string conversion in
E:\server\www\sports\futur\test.phtml on line 9

Notice: Undefined variable: fafa in
E:\server\www\sports\futur\test.phtml on line 10
AA
------------------------------------

Sp - still doesnt work

------------------------------------------------------------------------

[2002-10-10 10:31:33] [EMAIL PROTECTED]

He's simply using the wrong syntax.

The syntax is either

  array($obj, 'method');

or

  array('class', 'method');

so this makes

set_error_handler(array($obj, 'method'));

------------------------------------------------------------------------

The remainder of the comments for this report are too long. To view
the rest of the comments, please view the bug report online at
    http://bugs.php.net/19033

-- 
Edit this bug report at http://bugs.php.net/?id=19033&edit=1

Reply via email to