Find this useful? Enter your email to receive occasional updates for securing PHP code.

Signing you up...

Thank you for signing up!

PHP Decode

function jsspecialchars($s) { return preg_replace('/([^ !#$%@()*+,-.\x30-\x5b\x5d-\x7e..

Decoded Output download

<?  function jsspecialchars($s) { 
   return preg_replace('/([^ !#$%@()*+,-.0-[]-~])/e', 
       "'\x'.(ord('\1')<16? '0': '').dechex(ord('\1'))",$s); 
} 
 ?>

Did this file decode correctly?

Original Code

function jsspecialchars($s) {
   return preg_replace('/([^ !#$%@()*+,-.\x30-\x5b\x5d-\x7e])/e',
       "'\\x'.(ord('\\1')<16? '0': '').dechex(ord('\\1'))",$s);
}

Function Calls

None

Variables

None

Stats

MD5 fddb946948925af7026d151c7657c647
Eval Count 0
Decode Time 78 ms