set_error_handler Isn't Working How I Want It To Work - Stack Overflow most recent 30 from stackoverflow.com2009-11-29T12:50:41Zhttp://stackoverflow.com/feeds/question/36621http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/36621/seterrorhandler-isnt-working-how-i-want-it-to-work1set_error_handler Isn't Working How I Want It To Workstalepretzel2008-08-31T03:57:29Z2008-08-31T09:23:12Z
<p>I'm taking the leap: my php scripts will ALL fail gracefully!</p>
<p>At least, that's what I'm hoping for...</p>
<p>I don't want to wrap (practically) every single line in try...catch statements, so I think my best bet is to make a custom error handler for the beginning of my files.</p>
<p>I'm testing it out on a practice page:</p>
<pre><code>function customError($level,$message,$file,$line,$context){
echo "Sorry, an error has occured on line $line.<br />";
echo "The function that caused the error says $message.<br />";
die();
}
set_error_handler("customError");
echo($imAFakeVariable);
</code></pre>
<p>This works fine, returning:</p>
<p>Sorry, an error has occured on line 17.
The function that caused the error says Undefined variable: imAFakeVariable.</p>
<p>However, this setup doesn't work for undefined functions.</p>
<pre><code>function customError($level,$message,$file,$line,$context){
echo "Sorry, an error has occured on line $line.<br />";
echo "The function that caused the error says $message.<br />";
die();
}
set_error_handler("customError");
imAFakeFunction();
</code></pre>
<p>This returns:</p>
<p>Fatal error: Call to undefined function: imafakefunction() in /Library/WebServer/Documents/experimental/errorhandle.php on line 17</p>
<p>Why isn't my custom error handler catching undefinedd functions? Are there other problems that this will cause?</p>
<p>Thanks,
Jason</p>
http://stackoverflow.com/questions/36621/seterrorhandler-isnt-working-how-i-want-it-to-work/36625#366251Answer by John Millikin for set_error_handler Isn't Working How I Want It To WorkJohn Millikin2008-08-31T04:06:54Z2008-08-31T04:06:54Z<blockquote>
<p>Why isn't my custom error handler catching undefinedd functions? Are there other problems that this will cause?</p>
</blockquote>
<p>At a guess, I'd say that undefined function errors travel through a different execution path than other error types. Perhaps the PHP designers could tell you more, except I doubt PHP is in any way designed.</p>
<p>If you'd like your scripts to fail gracefully while still writing them PHP-style, try putting the entire page in a function and then call it within a <code>try..catch</code> block.</p>
http://stackoverflow.com/questions/36621/seterrorhandler-isnt-working-how-i-want-it-to-work/36703#367031Answer by different for set_error_handler Isn't Working How I Want It To Workdifferent2008-08-31T09:21:23Z2008-08-31T09:21:23Z<p>One of the best ways to get help on a PHP topic is to look through the function reference on the <a href="http://www.php.net" rel="nofollow">PHP.net</a> website. You'll often find that someone has had the same problem and will have provided sample code to show how to work around it.</p>
<p>In regard to your question, have a look through the <a href="http://uk3.php.net/manual/en/function.set-error-handler.php" rel="nofollow">set_error_handler</a> page. There are a lot of functions there - one of which should fit your needs.</p>
http://stackoverflow.com/questions/36621/seterrorhandler-isnt-working-how-i-want-it-to-work/36704#367040Answer by Cd-MaN for set_error_handler Isn't Working How I Want It To WorkCd-MaN2008-08-31T09:22:12Z2008-08-31T09:22:12Z<p>From the <a href="http://php.net/set_error_handler" rel="nofollow">documentation</a> (emphasis added):</p>
<blockquote>
<p>The following error types <strong>cannot</strong> be handled with a user defined function: E_ERROR, E_PARSE, E_CORE_ERROR, E_CORE_WARNING, E_COMPILE_ERROR, E_COMPILE_WARNING, and most of E_STRICT raised in the file where set_error_handler() is called.</p>
</blockquote>
<p>Calling undefined functions triggers an E_ERROR, thus it can not be handled by the error callback (or by exception handlers for that matter). All that you can do is set error_reporting to 0.</p>
<p>PS, if you are rolling your own error handler, you should take care to handle correctly the @ operator. From the documentation (emphasis added):</p>
<blockquote>
<p>It is important to remember that the standard PHP error handler is completely bypassed. error_reporting() settings will have no effect and your error handler will be called regardless - however you are still able to read the current value of error_reporting and act appropriately. <strong>Of particular note is that this value will be 0 if the statement that caused the error was prepended by the @ error-control operator.</strong></p>
</blockquote>
http://stackoverflow.com/questions/36621/seterrorhandler-isnt-working-how-i-want-it-to-work/36705#367052Answer by Ross for set_error_handler Isn't Working How I Want It To WorkRoss2008-08-31T09:23:12Z2008-08-31T09:23:12Z<p><code>set_error_handler</code> is designed to handle errors with codes of: <code>E_USER_ERROR | E_USER_WARNING | E_USER_NOTICE</code>. This is because <code>set_error_handler</code> is meant to be a method of reporting errors thrown by the <em>user</em> error function <code>trigger_error</code>.</p>
<p>However, I did find this comment in the manual that may help you:</p>
<blockquote>
<p>"The following error types cannot be handled with a user defined function: <code>E_ERROR</code>, <code>E_PARSE</code>, <code>E_CORE_ERROR</code>, <code>E_CORE_WARNING</code>, <code>E_COMPILE_ERROR</code>, <code>E_COMPILE_WARNING</code>, and most of <code>E_STRICT</code> raised in the file where <code>set_error_handler()</code> is called."</p>
<p>This is not exactly true. <code>set_error_handler()</code> can't handle them, but <code>ob_start()</code> can handle at least <code>E_ERROR</code>.</p>
<pre><code><?php
function error_handler($output)
{
$error = error_get_last();
$output = "";
foreach ($error as $info => $string)
$output .= "{$info}: {$string}\n";
return $output;
}
ob_start('error_handler');
will_this_undefined_function_raise_an_error();
?>
</code></pre>
</blockquote>
<p>Really though these errors should be silently reported in a file, for example. Hopefully you won't have many <code>E_PARSE</code> errors in your project! :-)</p>
<p>As for general error reporting, stick with Exceptions (I find it helpful to make them tie in with my MVC system). You can build a pretty versatile Exception to provide options via buttons and add plenty of description to let the user know what's wrong.</p>