File indexing completed on 2025-01-19 05:21:37
0001 <?php 0002 /** 0003 * Zend Framework 0004 * 0005 * LICENSE 0006 * 0007 * This source file is subject to the new BSD license that is bundled 0008 * with this package in the file LICENSE.txt. 0009 * It is also available through the world-wide-web at this URL: 0010 * http://framework.zend.com/license/new-bsd 0011 * If you did not receive a copy of the license and are unable to 0012 * obtain it through the world-wide-web, please send an email 0013 * to license@zend.com so we can send you a copy immediately. 0014 * 0015 * @category Zend 0016 * @package Zend_Validate 0017 * @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com) 0018 * @license http://framework.zend.com/license/new-bsd New BSD License 0019 * @version $Id$ 0020 */ 0021 0022 /** 0023 * @see Zend_Validate_Barcode_AdapterAbstract 0024 */ 0025 // require_once 'Zend/Validate/Barcode/AdapterAbstract.php'; 0026 0027 /** 0028 * @category Zend 0029 * @package Zend_Validate 0030 * @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com) 0031 * @license http://framework.zend.com/license/new-bsd New BSD License 0032 */ 0033 class Zend_Validate_Barcode_Code39 extends Zend_Validate_Barcode_AdapterAbstract 0034 { 0035 /** 0036 * Allowed barcode lengths 0037 * @var integer 0038 */ 0039 protected $_length = -1; 0040 0041 /** 0042 * Allowed barcode characters 0043 * @var string 0044 */ 0045 protected $_characters = '0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ -.$/+%'; 0046 0047 /** 0048 * Checksum function 0049 * @var string 0050 */ 0051 protected $_checksum = '_code39'; 0052 0053 /** 0054 * @var array 0055 */ 0056 protected $_check = array( 0057 '0' => 0, '1' => 1, '2' => 2, '3' => 3, '4' => 4, '5' => 5, '6' => 6, 0058 '7' => 7, '8' => 8, '9' => 9, 'A' => 10, 'B' => 11, 'C' => 12, 'D' => 13, 0059 'E' => 14, 'F' => 15, 'G' => 16, 'H' => 17, 'I' => 18, 'J' => 19, 'K' => 20, 0060 'L' => 21, 'M' => 22, 'N' => 23, 'O' => 24, 'P' => 25, 'Q' => 26, 'R' => 27, 0061 'S' => 28, 'T' => 29, 'U' => 30, 'V' => 31, 'W' => 32, 'X' => 33, 'Y' => 34, 0062 'Z' => 35, '-' => 36, '.' => 37, ' ' => 38, '$' => 39, '/' => 40, '+' => 41, 0063 '%' => 42, 0064 ); 0065 0066 /** 0067 * Constructor 0068 * 0069 * Sets check flag to false. 0070 */ 0071 public function __construct() 0072 { 0073 $this->setCheck(false); 0074 } 0075 0076 /** 0077 * Validates the checksum (Modulo 43) 0078 * 0079 * @param string $value The barcode to validate 0080 * @return boolean 0081 */ 0082 protected function _code39($value) 0083 { 0084 $checksum = substr($value, -1, 1); 0085 $value = str_split(substr($value, 0, -1)); 0086 $count = 0; 0087 foreach($value as $char) { 0088 $count += $this->_check[$char]; 0089 } 0090 0091 $mod = $count % 43; 0092 if ($mod == $this->_check[$checksum]) { 0093 return true; 0094 } 0095 0096 return false; 0097 } 0098 }