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-- Literal compaction should take method calls on literals into account --EXTENSIONS..
Decoded Output download
--TEST--
Literal compaction should take method calls on literals into account
--EXTENSIONS--
opcache
--FILE--
<?php
try {
(42)->foo();
} catch (Error $e) {
echo $e->getMessage(), "
";
}
?>
--EXPECT--
Call to a member function foo() on int
Did this file decode correctly?
Original Code
--TEST--
Literal compaction should take method calls on literals into account
--EXTENSIONS--
opcache
--FILE--
<?php
try {
(42)->foo();
} catch (Error $e) {
echo $e->getMessage(), "\n";
}
?>
--EXPECT--
Call to a member function foo() on int
Function Calls
None |
Stats
MD5 | e0bc9585cda4f506443f6af8fe49fd06 |
Eval Count | 0 |
Decode Time | 81 ms |