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-- SPL: Countable --FILE-- <?php class Test implements Countable { function cou..
Decoded Output download
--TEST--
SPL: Countable
--FILE--
<?php
class Test implements Countable
{
function count(): int
{
return 4;
}
};
$a = new Test;
var_dump(count($a));
?>
--EXPECT--
int(4)
Did this file decode correctly?
Original Code
--TEST--
SPL: Countable
--FILE--
<?php
class Test implements Countable
{
function count(): int
{
return 4;
}
};
$a = new Test;
var_dump(count($a));
?>
--EXPECT--
int(4)
Function Calls
None |
Stats
MD5 | ac6e3c4d7a035018a0003d34f3be49d1 |
Eval Count | 0 |
Decode Time | 82 ms |