500 Server Error

500 System Error Handler

Things go wrong. You can’t predict errors, but you can anticipate them. Each Slim Framework application has an error handler that receives all uncaught PHP exceptions. This error handler also receives the current HTTP request and response objects, too. The error handler must prepare and return an appropriate Response object to be returned to the HTTP client.

Default error handler

The default error handler is very basic. It sets the Response status code to 500, it sets the Response content type to text/html, and appends a generic error message into the Response body.

This is probably not appropriate for production applications. You are strongly encouraged to implement your own Slim application error handler.

The default error handler can also include detailed error diagnostic information. To enable this you need to set the displayErrorDetails setting to true:

$configuration = [
    "settings" => [
        "displayErrorDetails" => true,
    ],
];
$c = new SlimContainer($configuration);
$app = new SlimApp($c);

Custom error handler

A Slim Framework application’s error handler is a Pimple service. You can substitute your own error handler by defining a custom Pimple factory method with the application container.

There are two ways to inject handlers:

Pre App

$c = new SlimContainer();
$c["errorHandler"] = function ($c) {
    return function ($request, $response, $exception) use ($c) {
        return $c["response"]->withStatus(500)
                             ->withHeader("Content-Type", "text/html")
                             ->write("Something went wrong!");
    };
};
$app = new SlimApp($c);

Post App

$app = new SlimApp();
$c = $app->getContainer();
$c["errorHandler"] = function ($c) {
    return function ($request, $response, $exception) use ($c) {
        return $c["response"]->withStatus(500)
                             ->withHeader("Content-Type", "text/html")
                             ->write("Something went wrong!");
    };
};

In this example, we define a new errorHandler factory that returns a callable. The returned callable accepts three arguments:

  1. PsrHttpMessageServerRequestInterface instance
  2. PsrHttpMessageResponseInterface instance
  3. Exception instance

The callable MUST return a new PsrHttpMessageResponseInterface instance as is appropriate for the given exception.

Disabling

To completely disable Slim’s error handling, simply remove the error handler from the container:

unset($app->getContainer()["errorHandler"]);

You are now responsible for handling any exceptions that occur in your application as they will not be handled by Slim.

文章导航