My test file is:
<?php
echo "Hello";
?>
Now I encoded with ionCube, it becomes obfuscated.
ioncube.sh -55 test.php -o test_e.php
Whenever I run php test_e.php > out
it prints Hello
in the "out" file.
So it executed somewhere in the system and decompile PHP code in system.
Is there any way to obtain that decompiled code?
I searched lots of things in Google like "xdebug, parsing, trace" but it's not working to obtain the decompiled PHP.