From 7165c1d41bc79d9aaac58f468f281b53a5860c6c Mon Sep 17 00:00:00 2001 From: "Theodore R. Smith" Date: Tue, 14 May 2019 23:30:57 -0500 Subject: [PATCH] Modern code formatting. --- ChromePhp.php | 24 +++++++++++++++++------- 1 file changed, 17 insertions(+), 7 deletions(-) diff --git a/ChromePhp.php b/ChromePhp.php index 8757bb9..d9be8fd 100755 --- a/ChromePhp.php +++ b/ChromePhp.php @@ -399,22 +399,32 @@ protected function _writeHeader($data) $header = self::HEADER_NAME . ': ' . $this->_encode($data); // Most HTTPD servers have a default header line length limit of 8kb, must test to avoid 500 Internal Server Error. if (strlen($header) > self::HTTPD_HEADER_LIMIT) { - $data['rows'] = array(); - $data['rows'][] = array(array('ChromePHP Error: The HTML header will surpass the limit of '.$this->_formatSize(self::HTTPD_HEADER_LIMIT).' ('.$this->_formatSize(strlen($header)).') - You can increase the HTTPD_HEADER_LIMIT on ChromePHP class, according to your Apache LimitRequestFieldsize directive'), '', self::ERROR); + $data['rows'] = []; + $data['rows'][] = [ + [ + 'ChromePHP Error: The HTML header will surpass the limit of ' . + $this->_formatSize(self::HTTPD_HEADER_LIMIT) . ' (' . $this->_formatSize(strlen($header)) . + ') - You can increase the HTTPD_HEADER_LIMIT on ChromePHP class, according to your Apache ' . + 'LimitRequestFieldsize directive' + ], '', self::ERROR + ]; $header = self::HEADER_NAME . ': ' . $this->_encode($data); } header($header); } protected function _formatSize($arg) { - if ($arg>0){ + if ($arg > 0) { $j = 0; - $ext = array("bytes","Kb","Mb","Gb","Tb"); - while ($arg >= pow(1024,$j)) ++$j; { - $arg = (round($arg/pow(1024,$j-1)*100)/100).($ext[$j-1]); + $ext = ["bytes","Kb","Mb","Gb","Tb"]; + while ($arg >= pow(1024, $j)) ++$j; { + $arg = (round($arg / pow(1024, $j - 1) * 100) / 100).($ext[$j - 1]); } + return $arg; - } else return "0Kb"; + } + + return "0Kb"; } /**