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-- Allow abstract function override --FILE-- <?php abstract class A { abs..
Decoded Output download
--TEST--
Allow abstract function override
--FILE--
<?php
abstract class A { abstract function bar($x); }
abstract class B extends A { abstract function bar($x, $y = 0); }
echo "DONE";
?>
--EXPECT--
DONE
Did this file decode correctly?
Original Code
--TEST--
Allow abstract function override
--FILE--
<?php
abstract class A { abstract function bar($x); }
abstract class B extends A { abstract function bar($x, $y = 0); }
echo "DONE";
?>
--EXPECT--
DONE
Function Calls
None |
Stats
MD5 | a61d171fbeda3ceede15c4c896be225f |
Eval Count | 0 |
Decode Time | 85 ms |