Find this useful? Enter your email to receive occasional updates for securing PHP code.
Signing you up...
Thank you for signing up!
PHP Decode
<?php declare(strict_types = 1); /** * PHP error output for HTTP headers. * * @package ..
Decoded Output download
<?php declare(strict_types = 1);
/**
* PHP error output for HTTP headers.
*
* @package query-monitor
*/
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
class QM_Output_Headers_PHP_Errors extends QM_Output_Headers {
/**
* Collector instance.
*
* @var QM_Collector_PHP_Errors Collector.
*/
protected $collector;
/**
* @return array<string, mixed>
*/
public function get_output() {
/** @var QM_Data_PHP_Errors $data */
$data = $this->collector->get_data();
$headers = array();
if ( empty( $data->errors ) ) {
return array();
}
$count = 0;
foreach ( $data->errors as $type => $errors ) {
foreach ( $errors as $error_key => $error ) {
$count++;
$stack = array();
if ( ! empty( $error['filtered_trace'] ) ) {
$stack = array_column( $error['filtered_trace'], 'display' );
}
$output_error = array(
'key' => $error_key,
'type' => $error['type'],
'message' => $error['message'],
'file' => QM_Util::standard_dir( $error['file'], '' ),
'line' => $error['line'],
'stack' => $stack,
'component' => $error['component']->name,
);
$key = sprintf( 'error-%d', $count );
$headers[ $key ] = json_encode( $output_error );
}
}
return array_merge(
array(
'error-count' => $count,
),
$headers
);
}
}
/**
* @param array<string, QM_Output> $output
* @param QM_Collectors $collectors
* @return array<string, QM_Output>
*/
function register_qm_output_headers_php_errors( array $output, QM_Collectors $collectors ) {
$collector = QM_Collectors::get( 'php_errors' );
if ( $collector ) {
$output['php_errors'] = new QM_Output_Headers_PHP_Errors( $collector );
}
return $output;
}
add_filter( 'qm/outputter/headers', 'register_qm_output_headers_php_errors', 110, 2 );
?>
Did this file decode correctly?
Original Code
<?php declare(strict_types = 1);
/**
* PHP error output for HTTP headers.
*
* @package query-monitor
*/
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
class QM_Output_Headers_PHP_Errors extends QM_Output_Headers {
/**
* Collector instance.
*
* @var QM_Collector_PHP_Errors Collector.
*/
protected $collector;
/**
* @return array<string, mixed>
*/
public function get_output() {
/** @var QM_Data_PHP_Errors $data */
$data = $this->collector->get_data();
$headers = array();
if ( empty( $data->errors ) ) {
return array();
}
$count = 0;
foreach ( $data->errors as $type => $errors ) {
foreach ( $errors as $error_key => $error ) {
$count++;
$stack = array();
if ( ! empty( $error['filtered_trace'] ) ) {
$stack = array_column( $error['filtered_trace'], 'display' );
}
$output_error = array(
'key' => $error_key,
'type' => $error['type'],
'message' => $error['message'],
'file' => QM_Util::standard_dir( $error['file'], '' ),
'line' => $error['line'],
'stack' => $stack,
'component' => $error['component']->name,
);
$key = sprintf( 'error-%d', $count );
$headers[ $key ] = json_encode( $output_error );
}
}
return array_merge(
array(
'error-count' => $count,
),
$headers
);
}
}
/**
* @param array<string, QM_Output> $output
* @param QM_Collectors $collectors
* @return array<string, QM_Output>
*/
function register_qm_output_headers_php_errors( array $output, QM_Collectors $collectors ) {
$collector = QM_Collectors::get( 'php_errors' );
if ( $collector ) {
$output['php_errors'] = new QM_Output_Headers_PHP_Errors( $collector );
}
return $output;
}
add_filter( 'qm/outputter/headers', 'register_qm_output_headers_php_errors', 110, 2 );
Function Calls
None |
Stats
MD5 | 93a7bb7a9f2f986020b005e6ad458d73 |
Eval Count | 0 |
Decode Time | 92 ms |