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 $comb = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"; $shfl = ..
Decoded Output download
<?php
$comb = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789";
$shfl = str_shuffle($comb);
$pwd = substr($shfl,0,10);
echo $pwd;
?>
Did this file decode correctly?
Original Code
<?php
$comb = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789";
$shfl = str_shuffle($comb);
$pwd = substr($shfl,0,10);
echo $pwd;
?>
Function Calls
str_shuffle | 1 |
Stats
MD5 | 7502101d399cd6c02e240407e446f153 |
Eval Count | 0 |
Decode Time | 38 ms |