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 final class AphrontIntHTTPParameterType extends AphrontHTTPParameterType { pro..
Decoded Output download
<?php
final class AphrontIntHTTPParameterType
extends AphrontHTTPParameterType {
protected function getParameterValue(AphrontRequest $request, $key) {
return $request->getInt($key);
}
protected function getParameterTypeName() {
return 'int';
}
protected function getParameterFormatDescriptions() {
return array(
pht('An integer.'),
);
}
protected function getParameterExamples() {
return array(
'v=123',
);
}
}
?>
Did this file decode correctly?
Original Code
<?php
final class AphrontIntHTTPParameterType
extends AphrontHTTPParameterType {
protected function getParameterValue(AphrontRequest $request, $key) {
return $request->getInt($key);
}
protected function getParameterTypeName() {
return 'int';
}
protected function getParameterFormatDescriptions() {
return array(
pht('An integer.'),
);
}
protected function getParameterExamples() {
return array(
'v=123',
);
}
}
Function Calls
None |
Stats
MD5 | 1cbf53d0d20646ee3691826e1cd351a4 |
Eval Count | 0 |
Decode Time | 91 ms |