Posts by SnowRunescape • 13 points
2 posts
-
0
votes0
answers24
viewsQ: Get the value $1 of preg_replace inside an array that has a function execution inside
Well, I want to change a text from one sentence to another (it’s like an encryption) code being used: $dd = array(); $UserInfo = new UserInfo; $search = array( '/log\((.*)\);/' ); $replace = array(…
-
0
votes1
answer18
viewsQ: Proguard, how not to change a certain variable
I have a variable in my Java code, and I want to obfuscate the code using Proguard, but there is a variable that I want to keep the name, after obfuscation, because I will use this application in…