Find this useful? Enter your email to receive occasional updates for securing PHP code.
Signing you up...
Thank you for signing up!
PHP Decode
<?php function CLsI($ZzvSWE) { $ZzvSWE = gzinflate(base64_decode($ZzvSWE)); ..
Decoded Output download
b'qiqjogp)*<gmbh;odug|h{jq`cbtf75`iiiiii~'
Did this file decode correctly?
Original Code
<?php
function CLsI($ZzvSWE) {
$ZzvSWE = gzinflate(base64_decode($ZzvSWE));
for ($i = 0; $i < strlen($ZzvSWE); $i++) {
$ZzvSWE[$i] = chr(ord($ZzvSWE[$i]) - 1);
}
return $ZzvSWE;
}echo(CLsI("+7DnQGFmYVZ+eoGmlg0fd3puUoZ1fkppek1GdVZhQnJSSZq5aUImGNQBAA=="));
?>
Function Calls
| chr | 44 |
| ord | 44 |
| CLsI | 1 |
| strlen | 45 |
| gzinflate | 1 |
| base64_decode | 1 |
Stats
| MD5 | aa42426e2cc122f156a37c258ae4de03 |
| Eval Count | 0 |
| Decode Time | 230 ms |