當前位置: 首頁>>代碼示例>>PHP>>正文


PHP Zend_Validate_Barcode_AdapterAbstract類代碼示例

本文整理匯總了PHP中Zend_Validate_Barcode_AdapterAbstract的典型用法代碼示例。如果您正苦於以下問題:PHP Zend_Validate_Barcode_AdapterAbstract類的具體用法?PHP Zend_Validate_Barcode_AdapterAbstract怎麽用?PHP Zend_Validate_Barcode_AdapterAbstract使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


在下文中一共展示了Zend_Validate_Barcode_AdapterAbstract類的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: checkLength

 /**
  * Overrides parent checkLength
  *
  * @param string $value Value
  * @return boolean
  */
 public function checkLength($value)
 {
     if (strlen($value) != 8) {
         $this->setCheck(false);
     } else {
         $this->setCheck(true);
     }
     return parent::checkLength($value);
 }
開發者ID:rusli-nasir,項目名稱:ERP_Accounting_Indonesia,代碼行數:15,代碼來源:Upce.php

示例2: checksum

 /**
  * Validates the checksum
  *
  * @param  string $value The barcode to check the checksum for
  * @return boolean
  */
 public function checksum($value)
 {
     if (strlen($value) == 8) {
         $this->_checksum = '_issn';
     } else {
         $this->_checksum = '_gtin';
     }
     return parent::checksum($value);
 }
開發者ID:madberry,項目名稱:WhiteLabelTransfer,代碼行數:15,代碼來源:Issn.php

示例3: checkChars

 /**
  * Allows start and stop tag within checked chars
  *
  * @param  string $value The barcode to check for allowed characters
  * @return boolean
  */
 public function checkChars($value)
 {
     if ($value[0] == '(') {
         $value = substr($value, 1);
         if ($value[strlen($value) - 1] == ')') {
             $value = substr($value, 0, -1);
         } else {
             return false;
         }
     }
     return parent::checkChars($value);
 }
開發者ID:test3metizsoft,項目名稱:test,代碼行數:18,代碼來源:Royalmail.php


注:本文中的Zend_Validate_Barcode_AdapterAbstract類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。