--- title: Content Length Middleware --- The Content Length Middleware will automatically append a `Content-Length` header to the response. This is to replace the `addContentLengthHeader` setting that was removed from Slim 3. This middleware should be placed on the end of the middleware stack so that it gets executed first and exited last. ## Usage ```php add($contentLengthMiddleware); // ... $app->run(); ```