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


PHP Zend_Validate_StringLength::__construct方法代码示例

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


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

示例1: __construct

 /**
  * Sets validator options
  *
  * @param  integer|array|Zend_Config $options
  */
 public function __construct($options = array())
 {
     if (!is_array($options)) {
         $options = func_get_args();
         if (!isset($options[1])) {
             $options[1] = 'utf-8';
         }
         parent::__construct($options[0], $options[0], $options[1]);
         return;
     } else {
         if (isset($options['length'])) {
             $options['max'] = $options['min'] = $options['length'];
         }
         if (isset($options['name'])) {
             $this->_name = $options['name'];
         }
     }
     parent::__construct($options);
 }
开发者ID:nemphys,项目名称:magento2,代码行数:24,代码来源:KeyLength.php

示例2: __construct

 /**
  * constructor
  */
 public function __construct()
 {
     parent::__construct(array('max' => 255, 'min' => 1));
 }
开发者ID:rukzuk,项目名称:rukzuk,代码行数:7,代码来源:PhpClassNameId.php

示例3: __construct

 public function __construct($options = array())
 {
     parent::__construct($options);
     $this->setMessages(array(Zend_Validate_StringLength::INVALID => "Invalid type given. String expected", Zend_Validate_StringLength::TOO_SHORT => "%value% is less than %min% characters long", Zend_Validate_StringLength::TOO_LONG => "%value% is more than %max% characters long"));
 }
开发者ID:joshauza,项目名称:baseapp,代码行数:5,代码来源:FilenameLength.php

示例4: __construct

 public function __construct($min = 0, $max = null)
 {
     $this->_messageTemplates[self::TOO_SHORT] = trlKwfStatic("'%value%' is less than %min% characters long");
     $this->_messageTemplates[self::TOO_LONG] = trlKwfStatic("'%value%' is greater than %max% characters long");
     parent::__construct(array('min' => $min, 'max' => $max));
 }
开发者ID:xiaoguizhidao,项目名称:koala-framework,代码行数:6,代码来源:StringLength.php


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