当前位置: 首页>>代码示例>>PHP>>正文


PHP Barcode::getBarcodeFont方法代码示例

本文整理汇总了PHP中Zend\Barcode\Barcode::getBarcodeFont方法的典型用法代码示例。如果您正苦于以下问题:PHP Barcode::getBarcodeFont方法的具体用法?PHP Barcode::getBarcodeFont怎么用?PHP Barcode::getBarcodeFont使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Zend\Barcode\Barcode的用法示例。


在下文中一共展示了Barcode::getBarcodeFont方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: __construct

 /**
  * Constructor
  * @param array|\Zend\Config\Config $options
  * @return void
  */
 public function __construct($options = null)
 {
     $this->_getDefaultOptions();
     if (Barcode\Barcode::getBarcodeFont() !== null) {
         $this->_font = Barcode\Barcode::getBarcodeFont();
     }
     if ($options instanceof Config\Config) {
         $options = $options->toArray();
     }
     if (is_array($options)) {
         $this->setOptions($options);
     }
     /** @todo check if conversion is correct */
     // $this->_type = strtolower(substr(get_class($this), strlen($this->_barcodeNamespace) + 1));
     $this->_type = substr(strrchr(get_class($this), '\\'), 1);
     if ($this->_mandatoryChecksum) {
         $this->_withChecksum = true;
         $this->_withChecksumInText = true;
     }
 }
开发者ID:bradley-holt,项目名称:zf2,代码行数:25,代码来源:AbstractObject.php

示例2: __construct

 /**
  * Constructor
  * @param array|\Zend\Config\Config $options
  * @return void
  */
 public function __construct($options = null)
 {
     $this->_getDefaultOptions();
     $this->_font = Barcode\Barcode::getBarcodeFont();
     if ($options instanceof Config) {
         $options = $options->toArray();
     }
     if (is_array($options)) {
         $this->setOptions($options);
     }
     $this->_type = strtolower(substr(get_class($this), strlen($this->_barcodeNamespace) + 1));
     if ($this->_mandatoryChecksum) {
         $this->_withChecksum = true;
         $this->_withChecksumInText = true;
     }
 }
开发者ID:heiglandreas,项目名称:zf2,代码行数:21,代码来源:AbstractObject.php

示例3: __construct

 /**
  * Constructor
  * @param array|Traversable $options
  * @return void
  */
 public function __construct($options = null)
 {
     $this->getDefaultOptions();
     $this->font = Barcode\Barcode::getBarcodeFont();
     if ($options instanceof Traversable) {
         $options = ArrayUtils::iteratorToArray($options);
     }
     if (is_array($options)) {
         $this->setOptions($options);
     }
     $this->type = strtolower(substr(get_called_class(), strlen($this->barcodeNamespace) + 1));
     if ($this->mandatoryChecksum) {
         $this->withChecksum = true;
         $this->withChecksumInText = true;
     }
 }
开发者ID:raZ3l,项目名称:zf2,代码行数:21,代码来源:AbstractObject.php


注:本文中的Zend\Barcode\Barcode::getBarcodeFont方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。