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


PHP Zend_Validate_Regex::__construct方法代碼示例

本文整理匯總了PHP中Zend_Validate_Regex::__construct方法的典型用法代碼示例。如果您正苦於以下問題:PHP Zend_Validate_Regex::__construct方法的具體用法?PHP Zend_Validate_Regex::__construct怎麽用?PHP Zend_Validate_Regex::__construct使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在Zend_Validate_Regex的用法示例。


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

示例1: __construct

 /**
  * Class constructor.
  * Set the value of the pattern and validate the email.
  *
  * @param  string $regexp <Optional> Regular expression to validate the value.
  *
  * @return void
  */
 public function __construct($regexp = "")
 {
     if (!empty($regexp)) {
         $this->_pattern = $regexp;
     }
     parent::__construct($this->_pattern);
 }
開發者ID:anunay,項目名稱:stentors,代碼行數:15,代碼來源:Email.php

示例2: __construct

 /**
  * On appel le constructeur de Zend_Validate_Regex pour faire correspondre le regex à un UUID
  */
 public function __construct()
 {
     parent::__construct(array('pattern' => '/([a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12})/'));
 }
開發者ID:sdis62,項目名稱:toolbox,代碼行數:7,代碼來源:UUID.php

示例3: __construct

 /**
  * Overwrite the constructor to make the pattern parameter optional.
  * @param string $pattern
  */
 public function __construct($pattern = null)
 {
     if (null !== $pattern) {
         parent::__construct($pattern);
     }
 }
開發者ID:jtietema,項目名稱:Fizzy,代碼行數:10,代碼來源:EmailAddressSimple.php

示例4: __construct

 /**
  * Sets validator options
  *
  * @param  string|\Zend_Config $pattern
  * @return void
  */
 public function __construct($pattern = self::PHONE_REGEX)
 {
     parent::__construct($pattern);
 }
開發者ID:GemsTracker,項目名稱:MUtil,代碼行數:10,代碼來源:Phone.php

示例5: __construct

 public function __construct($pattern)
 {
     $pattern['pattern'] = '/^([a-z0-9]+)([\\-+._][a-z0-9]+)*@([a-z0-9][\\-a-z0-9]*\\.){1,5}([a-z]){2,6}$/i';
     parent::__construct($pattern);
 }
開發者ID:SandeepUmredkar,項目名稱:PortalSMIP,代碼行數:5,代碼來源:EmailAddress.php

示例6: __construct

 /**
  * Sets validator options
  *
  * @param  string|\Zend_Config $pattern
  * @return void
  */
 public function __construct($pattern = self::EMAILS_REGEX)
 {
     parent::__construct($pattern);
 }
開發者ID:GemsTracker,項目名稱:MUtil,代碼行數:10,代碼來源:SimpleEmails.php


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