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 $password = '...'; $arr = str_split($password); $output = ''; foreach ($arr as..

Decoded Output download

<?php 
$password = '...'; 
$arr = str_split($password); 
$output = ''; 
 
foreach ($arr as $char) { 
   
  if (!is_numeric($char)) { 
     
    if (ctype_lower($char)) { 
      $char = strtoupper($char); 
    } else { 
      $char = strtolower($char); 
    } 
  } 
 
  $output .= $char; 
} 
 
$password = 'J2TEAM_' . $output; // J2TEAM_tN34tq0VN6o87AlPu35r790Os42t335A ?>

Did this file decode correctly?

Original Code

<?php
$password = '...';
$arr = str_split($password);
$output = '';

foreach ($arr as $char) {
  
  if (!is_numeric($char)) {
    
    if (ctype_lower($char)) {
      $char = strtoupper($char);
    } else {
      $char = strtolower($char);
    }
  }

  $output .= $char;
}

$password = 'J2TEAM_' . $output; // J2TEAM_tN34tq0VN6o87AlPu35r790Os42t335A

Function Calls

str_split 1

Variables

$password ...

Stats

MD5 73238cf8e46940dd9cd821687221bebb
Eval Count 0
Decode Time 110 ms