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

Signing you up...

Thank you for signing up!

PHP Decode

// Check if it's potentially a valid credit card number if (!/^(?:3[47][0-9]{13}|4[0-..

Decoded Output download

<?    // Check if it's potentially a valid credit card number 
  if (!/^(?:3[47][0-9]{13}|4[0-9]{12}(?:[0-9]{3})?|5[1-5][0-9]{14}|6(?:011|5[0-9][0-9])[0-9]{12}|3(?:0[0-5]|[68][0-9])[0-9]{11}|(?:2131|1800|35\d{3})\d{11})$/.test(number)) { 
    return false; 
  } ?>

Did this file decode correctly?

Original Code

  // Check if it's potentially a valid credit card number
  if (!/^(?:3[47][0-9]{13}|4[0-9]{12}(?:[0-9]{3})?|5[1-5][0-9]{14}|6(?:011|5[0-9][0-9])[0-9]{12}|3(?:0[0-5]|[68][0-9])[0-9]{11}|(?:2131|1800|35\d{3})\d{11})$/.test(number)) {
    return false;
  }

Function Calls

None

Variables

None

Stats

MD5 5cc5f9fdd0b730994dbf72a97787c1c1
Eval Count 0
Decode Time 62 ms