Skip to content

Instantly share code, notes, and snippets.

@yoosuf
Last active January 27, 2016 07:16
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 yoosuf/d71ef4402311ec25dc79 to your computer and use it in GitHub Desktop.
Save yoosuf/d71ef4402311ec25dc79 to your computer and use it in GitHub Desktop.
Sri Lanka Vehicle Registration Validation - PHP
<?php
function is_plate_valid($number)
{
// normal plate
if (preg_match("/([A-Z]{2,4}|\d{2,3}|[A-Z]{2} [A-Z]{2})[\-\]|[ ]\d{4}/", $number)) {
return true;
}
return false;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment