Skip to content

Instantly share code, notes, and snippets.

@rolandinsh
Created October 9, 2022 14:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rolandinsh/c08d9371fd1df6849b1e0d0cc436fa62 to your computer and use it in GitHub Desktop.
Save rolandinsh/c08d9371fd1df6849b1e0d0cc436fa62 to your computer and use it in GitHub Desktop.
Check if is Amazon ASIN like code
<?php
function isAsin($string){
$asinpattern = "/B[0-9]{2}[0-9A-Z]{7}|[0-9]{9}(X|0-9])/";
return preg_match($asinpattern, $string, $matches) === 1;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment