Is it possible to recompile peachpie DLL to PHP? #1045
Answered
by
jakubmisek
noobsoftware
asked this question in
Q&A
-
I have a nuget with DLLs compiled from PHP using peachpie, I'm wondering if i can recover the original PHP files or recompile to PHP? |
Beta Was this translation helpful? Give feedback.
Answered by
jakubmisek
Feb 19, 2022
Replies: 1 comment 6 replies
-
DLL contains the code compiled into MSIL. You can try to decompile (https://docs.peachpie.io/scenarios/intermediate/decompilation/) into C# to see at least what classes and functions are there. Although you won't obtain the original source code. |
Beta Was this translation helpful? Give feedback.
6 replies
Answer selected by
noobsoftware
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
DLL contains the code compiled into MSIL. You can try to decompile (https://docs.peachpie.io/scenarios/intermediate/decompilation/) into C# to see at least what classes and functions are there. Although you won't obtain the original source code.