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


PHP Validation::__construct方法代碼示例

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


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

示例1: __construct

 public function __construct($id = false)
 {
     $this->id = $id ?: 'form' . self::$formcount;
     if ($id) {
         if (isset($_POST[$this->id])) {
             parent::__construct($_POST);
         } else {
             if (isset($_GET[$this->id])) {
                 parent::__construct($_GET);
             } else {
                 parent::__construct(array());
             }
         }
     } else {
         if (!empty($_POST)) {
             parent::__construct($_POST);
         } else {
             if (!empty($_GET)) {
                 parent::__construct($_GET);
             } else {
                 parent::__construct(array());
             }
         }
     }
     self::$formcount++;
 }
開發者ID:jonthornton,項目名稱:JMVC,代碼行數:26,代碼來源:form.php

示例2: __construct

 public function __construct($limit, $message = "")
 {
     $this->limit = $limit;
     if (empty($message)) {
         $message = "%element% is limited to " . $limit . " characters.";
     }
     parent::__construct($message);
 }
開發者ID:Kemitestech,項目名稱:WordPress-Skeleton,代碼行數:8,代碼來源:MaxLength.php

示例3: __construct

 public function __construct($pattern, $message = "")
 {
     if (!empty($message)) {
         $this->message = $message;
     } else {
         $this->message = RM_UI_Strings::get('FORM_ERR_INVALID_REGEX');
     }
     $this->pattern = $pattern;
     parent::__construct($this->message);
 }
開發者ID:developmentDM2,項目名稱:The-Haute-Mess,代碼行數:10,代碼來源:RegExp.php

示例4: __construct

 public function __construct($name, $greaterThan, $equalTo = false)
 {
     parent::__construct($name);
     $this->greaterThan = $greaterThan;
     $this->equalTo = $equalTo;
 }
開發者ID:samnotsowise,項目名稱:Module.Stem,代碼行數:6,代碼來源:GreaterThan.php

示例5: __construct

 public function __construct($name, $equalTo)
 {
     parent::__construct($name);
     $this->equalTo = $equalTo;
 }
開發者ID:samnotsowise,項目名稱:Module.Stem,代碼行數:5,代碼來源:EqualTo.php

示例6: __construct

 public function __construct(array $array)
 {
     parent::__construct($array);
     $this->setErrorsFile();
 }
開發者ID:vspvt,項目名稱:kohana-restfulapi,代碼行數:5,代碼來源:Validation.php

示例7:

 function __construct()
 {
     parent::__construct();
 }
開發者ID:dbarchowsky,項目名稱:littled_lib,代碼行數:4,代碼來源:Model.php

示例8: __construct

 public function __construct($name, $lessThan, $equalTo = false)
 {
     parent::__construct($name);
     $this->lessThan = $lessThan;
     $this->equalTo = $equalTo;
 }
開發者ID:samnotsowise,項目名稱:Module.Stem,代碼行數:6,代碼來源:LessThan.php

示例9: __construct

 public function __construct($pattern, $message = "")
 {
     $this->pattern = $pattern;
     parent::__construct($message);
 }
開發者ID:oytunistrator,項目名稱:php-bootstrap-form,代碼行數:5,代碼來源:RegExp.php

示例10: __construct

 public function __construct($app, $em)
 {
     parent::__construct($app, $em);
 }
開發者ID:beerfleet,項目名稱:digitools,代碼行數:4,代碼來源:WhiskySearchValidation.php


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