Find this useful? Enter your email to receive occasional updates for securing PHP code.
Signing you up...
Thank you for signing up!
PHP Decode
$encoded_string1 = "7VoJc9pKtv4B+RUaVSrAxGF1Jnic+JZNMBhj7AA2S26K0tJaQNtVt9hC5q+/bonlA5vcW2..
Decoded Output download
b'!!!!!00!!joj`tfu)#fssps'
Did this file decode correctly?
Original Code
$encoded_string1 = "7VoJc9pKtv4B+RUaVSrAxGF1Jnic+JZNMBhj7AA2S26K0tJaQNtVt9hC5q+/bonlA5vcW2/mvjdTNS4bjlpn/c7p092SJYn/vMrlJMn27BElLC2TMPTD$";
$decoded1 = gzinflate(base64_decode($encoded_string1));
for ($i = 0; $i < strlen($decoded1); $i++) {
$decoded1[$i] = chr(ord($decoded1[$i]) - 1);
}
echo $decoded1;
Function Calls
chr | 24 |
ord | 24 |
strlen | 25 |
gzinflate | 1 |
base64_decode | 1 |
Stats
MD5 | 2ddcc1ce1bc037f3e42e99062e84b515 |
Eval Count | 0 |
Decode Time | 168 ms |