![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/cartforge.co/vendor/laminas/laminas-validator/src/Barcode/ |
<?php namespace Laminas\Validator\Barcode; use function str_split; use function substr; /** @final */ class Code39 extends AbstractAdapter { /** @var array */ protected $check = [ '0' => 0, '1' => 1, '2' => 2, '3' => 3, '4' => 4, '5' => 5, '6' => 6, '7' => 7, '8' => 8, '9' => 9, 'A' => 10, 'B' => 11, 'C' => 12, 'D' => 13, 'E' => 14, 'F' => 15, 'G' => 16, 'H' => 17, 'I' => 18, 'J' => 19, 'K' => 20, 'L' => 21, 'M' => 22, 'N' => 23, 'O' => 24, 'P' => 25, 'Q' => 26, 'R' => 27, 'S' => 28, 'T' => 29, 'U' => 30, 'V' => 31, 'W' => 32, 'X' => 33, 'Y' => 34, 'Z' => 35, '-' => 36, '.' => 37, ' ' => 38, '$' => 39, '/' => 40, '+' => 41, '%' => 42, ]; /** * Constructor for this barcode adapter */ public function __construct() { $this->setLength(-1); $this->setCharacters('0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ -.$/+%'); $this->setChecksum('code39'); $this->useChecksum(false); } /** * Validates the checksum (Modulo 43) * * @param string $value The barcode to validate * @return bool */ protected function code39($value) { $checksum = substr($value, -1, 1); $value = str_split(substr($value, 0, -1)); $count = 0; foreach ($value as $char) { $count += $this->check[$char]; } $mod = $count % 43; if ($mod === $this->check[$checksum]) { return true; } return false; } }