Find this useful? Enter your email to receive occasional updates for securing PHP code.
Signing you up...
Thank you for signing up!
PHP Decode
--TEST-- runkit_method_remove() function --SKIPIF-- <?php if(!extension_loaded("runkit") |..
Decoded Output download
--TEST--
runkit_method_remove() function
--SKIPIF--
<?php if(!extension_loaded("runkit") || !RUNKIT_FEATURE_MANIPULATION) print "skip"; ?>
--INI--
error_reporting=E_ALL
display_errors=on
--FILE--
<?php
class runkit_class {
function runkit_method() {
echo "Runkit Method
";
}
}
runkit_class::runkit_method();
runkit_method_remove('runkit_class','runkit_method');
if (!method_exists('runkit_class','runkit_method')) {
echo "Runkit Method Removed
";
}
?>
--EXPECT--
Runkit Method
Runkit Method Removed
Did this file decode correctly?
Original Code
--TEST--
runkit_method_remove() function
--SKIPIF--
<?php if(!extension_loaded("runkit") || !RUNKIT_FEATURE_MANIPULATION) print "skip"; ?>
--INI--
error_reporting=E_ALL
display_errors=on
--FILE--
<?php
class runkit_class {
function runkit_method() {
echo "Runkit Method\n";
}
}
runkit_class::runkit_method();
runkit_method_remove('runkit_class','runkit_method');
if (!method_exists('runkit_class','runkit_method')) {
echo "Runkit Method Removed\n";
}
?>
--EXPECT--
Runkit Method
Runkit Method Removed
Function Calls
extension_loaded | 1 |
Stats
MD5 | 3bf5462cd6caeda8ce5fd3dd77bea632 |
Eval Count | 0 |
Decode Time | 78 ms |