php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Doc Bug #25543 Error in set_error_handler() definition
Submitted: 2003-09-15 08:33 UTC Modified: 2004-06-28 17:56 UTC
From: akul at inbox dot ru Assigned:
Status: Closed Package: Documentation problem
PHP Version: 4.3.3 OS: All
Private report: No CVE-ID: None
 [2003-09-15 08:33 UTC] akul at inbox dot ru
Description:
------------
I see:
  string set_error_handler ( callback error_handler)

Must be:
  callback set_error_handler ( callback error_handler)

Because:
"Returns the _previously defined error handler_ (if any), or FALSE on error." 

Reproduce code:
---------------
<?
class a
{
	function h()
	{
		echo "a::h()";
	}
};

set_error_handler(array('a','h'));
print_r(set_error_handler(array('a','h')));

?>


Patches

Pull Requests

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2004-06-28 17:56 UTC] didou@php.net
Fixed, the right type was mixed. I also added an explanation for the array returned
 
PHP Copyright © 2001-2025 The PHP Group
All rights reserved.
Last updated: Thu Nov 20 08:00:01 2025 UTC