Can the static build be decompiled? #705
-
I am discussing this with my friends and talking about how we can ship our apps to server we do not own. We don't want to allow the buyers of our app break open the app, let alone steal the app code. One idea is to use the frankenphp's static builder, which can compile this to single binary file. However, can this prevent users to not "decompile" the app? Thank you |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
The PHP is decompressed and stored in temporary files. They can read the source code. There are obfuscation tools for php. In general though, it is better to rely on contracts for this sort of thing instead of technical hurdles. |
Beta Was this translation helpful? Give feedback.
-
I've read this in the docs: |
Beta Was this translation helpful? Give feedback.
The PHP is decompressed and stored in temporary files. They can read the source code. There are obfuscation tools for php. In general though, it is better to rely on contracts for this sort of thing instead of technical hurdles.