Bar Code Types | Technical | BarCodes & Identification | Products & Solutions | GS1 – The global language of business.
Check Digit Calculator | Support | BarCodes & Identification | Products & Solutions | GS1 – The global language of business.
EAN (GLN,GTIN, EAN numbers administered by GS1)
via Check digit – Wikipedia, the free encyclopedia.
Universal Product Code – Wikipedia, the free encyclopedia.
International Article Number (EAN) – Wikipedia, the free encyclopedia.
Global Trade Item Number – Wikipedia, the free encyclopedia.
/**
* This is a data provider for the above Unit-test.
*/
public function provider()
{
return array(
array(”, null), // Empty
array(‘0’, null), // Empty
array(‘ ‘, null), // Empty
array(‘NOT-NUMERIC’, null),
array(‘77676656’, null), // Invalid EAN8 – we do not validated EAN8 at this time.
array(‘123456789999’, ‘0123456789999’), // Upc valid, translated to EAN
array(‘5031366016409’, ‘5031366016409’),
array(‘99802618537’, ‘0099802618537’),
array(‘99802469443’, ‘0099802469443’),
array(‘58231298109’, ‘0058231298109’), // Too short but valid ean, needs zeros padding.
);
}
}
via Ean13.php – yinyang – YinYang Zend Framework Supplement Library – Google Project Hosting.
–jeroen
via: Things I tripped over when implementing the “Elf proef”: digit check for Dutch bank account numbers and social security numbers (bankrekeningnummer, BSN/Sofinummer) « The Wiert Corner – irregular stream of Wiert stuff.
Like this:
Like Loading...