41 header(
"Content-Type: text/plain");
77 return Formatter::formatExceptionPlain($this->getInspector());
88 foreach ($this->
tables() as $title => $content) {
89 $ret .=
"\n\n-- $title --\n\n";
90 if (count($content) > 0) {
91 foreach ($content as $key => $value) {
92 $key = str_pad($key, self::KEY_SPACE);
97 $indentation = str_pad(
"", self::KEY_SPACE);
98 $value = implode(
"\n", array_map(
function ($line) use (&$first, $indentation) {
103 return $indentation . $line;
104 }, explode(
"\n", print_r($value,
true))));
106 $ret .=
"$key: $value\n";
129 return array(
"GET Data" =>
$_GET 130 ,
"POST Data" => $post
134 ,
"Server/Request Data" =>
$server 135 ,
"Environment Variables" => $_ENV
145 foreach ($this->exclusion_list as $parameter) {
146 if (isset($super_global[$parameter])) {
147 $super_global[$parameter] =
'REMOVED FOR SECURITY';
150 if (isset($super_global[
'post_vars'][$parameter])) {
151 $super_global[
'post_vars'][$parameter] =
'REMOVED FOR SECURITY';
155 return $super_global;
167 $cookie_content = $server[
"HTTP_COOKIE"];
168 $cookie_content = explode(
";", $cookie_content);
170 foreach ($cookie_content as $key => $content) {
171 $content_array = explode(
"=", $content);
172 if (trim($content_array[0]) == session_name()) {
173 $content_array[1] = substr($content_array[1], 0, 5) .
" (SHORTENED FOR SECURITY)";
174 $cookie_content[$key] = implode(
"=", $content_array);
178 $server[
"HTTP_COOKIE"] = implode(
";", $cookie_content);
withExclusionList(array $exclusion_list)
handle()
Last missing method from HandlerInterface.
tablesContent()
Get the header for the page.
shortenPHPSessionId(array $server)
Shorts the php session id.
exceptionContent()
Get a short info about the exception.
hideSensitiveData(array $super_global)
tables()
Get the tables that should be rendered.
pageHeader()
Get the header for the page.
content()
Assemble the output for this handler.
A Whoops error handler that delegates calls on it self to another handler that is created only in the...