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 abstract class AphrontHTMLResponse extends AphrontResponse { public function get..
Decoded Output download
<?php
abstract class AphrontHTMLResponse extends AphrontResponse {
public function getHeaders() {
$headers = array(
array('Content-Type', 'text/html; charset=UTF-8'),
);
$headers = array_merge(parent::getHeaders(), $headers);
return $headers;
}
}
?>
Did this file decode correctly?
Original Code
<?php
abstract class AphrontHTMLResponse extends AphrontResponse {
public function getHeaders() {
$headers = array(
array('Content-Type', 'text/html; charset=UTF-8'),
);
$headers = array_merge(parent::getHeaders(), $headers);
return $headers;
}
}
Function Calls
None |
Stats
MD5 | f20798d39962f1636469c6df9a2d5690 |
Eval Count | 0 |
Decode Time | 79 ms |