Find this useful? Enter your email to receive occasional updates for securing PHP code.
Signing you up...
Thank you for signing up!
PHP Decode
$in = preg_replace('/[\x00-\x08\x10\x0B\x0C\x0E-\x19\x7F]'. '|[\x00-\x7F][\x80-\xBF]+'...
Decoded Output download
<? $in = preg_replace('/[--]'.
'|[-][-]+'.
'|([]|[-])[-]*'.
'|[-]((?![-])|[-]{2,})'.
'|[-](([-](?![-]))|(?![-]{2})|[-]{3,})/S',
'?', $in ); ?>
Did this file decode correctly?
Original Code
$in = preg_replace('/[\x00-\x08\x10\x0B\x0C\x0E-\x19\x7F]'.
'|[\x00-\x7F][\x80-\xBF]+'.
'|([\xC0\xC1]|[\xF0-\xFF])[\x80-\xBF]*'.
'|[\xC2-\xDF]((?![\x80-\xBF])|[\x80-\xBF]{2,})'.
'|[\xE0-\xEF](([\x80-\xBF](?![\x80-\xBF]))|(?![\x80-\xBF]{2})|[\x80-\xBF]{3,})/S',
'?', $in );
Function Calls
preg_replace | 1 |
Stats
MD5 | 6188e57246e0ceb08c5393c20ac60919 |
Eval Count | 0 |
Decode Time | 87 ms |