3 require_once
'./libs/composer/vendor/autoload.php';
20 public function __construct($inspector, $file_path, $file_name)
22 $this->inspector = $inspector;
23 $this->file_path = $file_path;
24 $this->file_name = $file_name;
39 if (!is_dir($this->file_path)) {
56 $file_name = $this->file_path .
"/" . $this->file_name . self::FILE_FORMAT;
57 $stream = fopen($file_name,
'w+');
58 fwrite($stream, $this->
content());
60 chmod($file_name, 0755);
80 return Formatter::formatExceptionPlain($this->inspector);
91 foreach ($this->
tables() as $title => $content) {
92 $ret .=
"\n\n-- $title --\n\n";
93 if (count($content) > 0) {
94 foreach ($content as $key => $value) {
95 $key = str_pad($key, self::KEY_SPACE);
100 $indentation = str_pad(
"", self::KEY_SPACE);
101 $value = implode(
"\n", array_map(
function ($line) use (&$first, $indentation) {
106 return $indentation . $line;
107 }, explode(
"\n", print_r($value,
true))));
109 $ret .=
"$key: $value\n";
132 return array(
"GET Data" =>
$_GET 133 ,
"POST Data" => $post
137 ,
"Server/Request Data" =>
$server 138 ,
"Environment Variables" => $_ENV
148 foreach ($this->exclusion_list as $parameter) {
149 if (isset($super_global[$parameter])) {
150 $super_global[$parameter] =
'REMOVED FOR SECURITY';
153 if (isset($super_global[
'post_vars'][$parameter])) {
154 $super_global[
'post_vars'][$parameter] =
'REMOVED FOR SECURITY';
158 return $super_global;
170 $cookie_content = $server[
"HTTP_COOKIE"];
171 $cookie_content = explode(
";", $cookie_content);
173 foreach ($cookie_content as $key => $content) {
174 $content_array = explode(
"=", $content);
175 if (trim($content_array[0]) == session_name()) {
176 $content_array[1] = substr($content_array[1], 0, 5) .
" (SHORTENED FOR SECURITY)";
177 $cookie_content[$key] = implode(
"=", $content_array);
181 $server[
"HTTP_COOKIE"] = implode(
";", $cookie_content);
static makeDirParents($a_dir)
Create a new directory and all parent directories.
pageHeader()
Get the header for the page.
__construct($inspector, $file_path, $file_name)
withExclusionList(array $exclusion_list)
Saves error informations into file.
shortenPHPSessionId(array $server)
Shorts the php session id.
tablesContent()
Get the header for the page.
hideSensitiveData(array $super_global)
exceptionContent()
Get a short info about the exception.
tables()
Get the tables that should be rendered.