3 * Zend Framework (http://framework.zend.com/)
5 * @link http://github.com/zendframework/zf2 for the canonical source repository
6 * @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
7 * @license http://framework.zend.com/license/new-bsd New BSD License
10 namespace Zend\Validator\Barcode
;
12 class Code93
extends AbstractAdapter
15 * Note that the characters !"§& are only synonyms
18 protected $check = array(
19 '0' => 0, '1' => 1, '2' => 2, '3' => 3, '4' => 4, '5' => 5, '6' => 6,
20 '7' => 7, '8' => 8, '9' => 9, 'A' => 10, 'B' => 11, 'C' => 12, 'D' => 13,
21 'E' => 14, 'F' => 15, 'G' => 16, 'H' => 17, 'I' => 18, 'J' => 19, 'K' => 20,
22 'L' => 21, 'M' => 22, 'N' => 23, 'O' => 24, 'P' => 25, 'Q' => 26, 'R' => 27,
23 'S' => 28, 'T' => 29, 'U' => 30, 'V' => 31, 'W' => 32, 'X' => 33, 'Y' => 34,
24 'Z' => 35, '-' => 36, '.' => 37, ' ' => 38, '$' => 39, '/' => 40, '+' => 41,
25 '%' => 42, '!' => 43, '"' => 44, '§' => 45, '&' => 46,
29 * Constructor for this barcode adapter
31 public function __construct()
34 $this->setCharacters('0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ -.$/+%');
35 $this->setChecksum('code93');
36 $this->useChecksum(false);
40 * Validates the checksum (Modulo CK)
42 * @param string $value The barcode to validate
45 protected function code93($value)
47 $checksum = substr($value, -2, 2);
48 $value = str_split(substr($value, 0, -2));
50 $length = count($value) %
20;
51 foreach ($value as $char) {
56 $count +
= $this->check
[$char] * $length;
60 $check = array_search(($count %
47), $this->check
);
63 $length = count($value) %
15;
64 foreach ($value as $char) {
69 $count +
= $this->check
[$char] * $length;
72 $check .= array_search(($count %
47), $this->check
);
74 if ($check == $checksum) {