本文整理汇总了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;
}
}
示例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;
}
}
示例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;
}
}