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 if (!function_exists('get_reflection_method')) { function get_reflection_method..
Decoded Output download
<?php
if (!function_exists('get_reflection_method')) {
function get_reflection_method($object, $method)
{
$reflectionMethod = new \ReflectionMethod($object, $method);
$reflectionMethod->setAccessible(true);
return $reflectionMethod;
}
}
if (!function_exists('call_protected_method')) {
function call_protected_method($object, $method, ...$args)
{
return get_reflection_method($object, $method)->invoke($object, ...$args);
}
}
if (!function_exists('get_reflection_property')) {
function get_reflection_property($object, $property)
{
$reflectionProperty = new \ReflectionProperty($object, $property);
$reflectionProperty->setAccessible(true);
return $reflectionProperty;
}
}
if (!function_exists('get_protected_property')) {
function get_protected_property($object, $property)
{
return get_reflection_property($object, $property)->getValue($object);
}
}
?>
Did this file decode correctly?
Original Code
<?php
if (!function_exists('get_reflection_method')) {
function get_reflection_method($object, $method)
{
$reflectionMethod = new \ReflectionMethod($object, $method);
$reflectionMethod->setAccessible(true);
return $reflectionMethod;
}
}
if (!function_exists('call_protected_method')) {
function call_protected_method($object, $method, ...$args)
{
return get_reflection_method($object, $method)->invoke($object, ...$args);
}
}
if (!function_exists('get_reflection_property')) {
function get_reflection_property($object, $property)
{
$reflectionProperty = new \ReflectionProperty($object, $property);
$reflectionProperty->setAccessible(true);
return $reflectionProperty;
}
}
if (!function_exists('get_protected_property')) {
function get_protected_property($object, $property)
{
return get_reflection_property($object, $property)->getValue($object);
}
}
Function Calls
None |
Stats
MD5 | 7977a76b1981005e64fa9e65fd35edf9 |
Eval Count | 0 |
Decode Time | 96 ms |