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


PHP valid::alpha方法代碼示例

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


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

示例1: random

 /**
  * Tests the text::random() function.
  * @dataProvider random_provider
  * @group core.helpers.text.random
  * @test
  */
 public function random($type, $length = 8)
 {
     //$this->markTestIncomplete('Test for PHP 5.3 bug needs to be counted, Kohana is still supporting 5.2');
     $result = text::random($type, $length);
     if ((string) $type) {
         // Checking length
         $this->assertEquals(mb_strlen($result), $length);
         $pool = '';
         switch ($type) {
             case 'alnum':
                 $this->assertTrue(valid::alpha_numeric($result));
                 break;
             case 'alpha':
                 $this->assertTrue(valid::alpha($result));
                 break;
             case 'numeric':
                 $this->assertTrue(valid::numeric($result));
                 break;
             case 'nozero':
                 $this->assertTrue(is_numeric($result));
                 break;
             case 'hexdec':
                 $pool = '0123456789abcdef';
                 break;
             case 'distinct':
                 $pool = '2345679ACDEFHJKLMNPRSTUVWXYZ';
                 break;
             default:
                 $pool = (string) $type;
         }
         if ($pool) {
             // PHP versions before 5.3 have a bug with preg_quote and it doesn't escape '-'
             $pool = version_compare(PHP_VERSION, '5.3', '>=') ? preg_quote((string) $pool, '/') : utf8::str_ireplace('-', '\\-', preg_quote((string) $pool, '/'));
             if (preg_match('/[' . $pool . ']*/u', $result, $match)) {
                 $this->assertEquals($match[0], $result);
             } else {
                 $this->assertTrue(FALSE);
             }
         }
     } else {
         // Checking length
         $this->assertEquals($result, '');
     }
 }
開發者ID:BirenRathod,項目名稱:indicia-code,代碼行數:50,代碼來源:Helper_Text_Test.php

示例2: isValid

 public function isValid($validation_data)
 {
     $errors = [];
     foreach ($validation_data as $name => $value) {
         //echo $name." ";
         //if (isset($_REQUEST[$name]) && !empty($_REQUEST[$name]))
         if ($name == "verify_emails") {
             //echo "verify email found";
             $name = "verify_email";
         }
         if ($name == "verify_passwords") {
             //echo "verify password found";
             $name = "verify_password";
         }
         if ($name == "emails") {
             //echo "verify password found";
             $name = "email";
         }
         $exploded = explode(":", $value);
         //echo $exploded[0]."<br>";
         switch ($exploded[0]) {
             case 'min':
                 $min = $exploded[1];
                 if (valid::alpha()->length($min)->validate($_REQUEST[$name]) == false) {
                     $errors[] = "{$name} must be at least {$min} Characters Long!";
                 }
                 break;
             case 'email':
                 //echo "irum";
                 if (valid::email()->validate($_REQUEST[$name]) == false) {
                     $errors[] = "You must enter a valid Email address";
                 }
                 break;
             case 'alnum':
                 //echo "irum";
                 if (valid::alnum()->length(4)->validate($_REQUEST[$name]) == false) {
                     $errors[] = "Password must be at least 4 Characters Long";
                 }
                 break;
             case 'equalTo':
                 if (valid::equals($_REQUEST[$name])->validate($_REQUEST[$exploded[1]]) == false) {
                     $errors[] = "Values does not match verification value!";
                 }
                 break;
             case 'unique':
                 //echo "unique";
                 $model = "Acme\\models\\" . $exploded[1];
                 $table = new $model();
                 //dd($name);
                 $results = $table::where($name, '=', $_REQUEST[$name])->first();
                 //dd($results);
                 if ($results != null) {
                     $errors[] = $_REQUEST[$name] . " already exist in this system!";
                 }
                 break;
             default:
                 $errors[] = "No Values Found!";
                 break;
         }
     }
     return $errors;
 }
開發者ID:sahid48,項目名稱:acme,代碼行數:62,代碼來源:Validator.php

示例3: alpha

 /**
  * Tests the valid::alpha() function.
  * @dataProvider alpha_provider
  * @group core.helpers.valid.alpha
  * @test
  */
 public function alpha($input_alpha, $expected_result)
 {
     $result = valid::alpha($input_alpha);
     $this->assertEquals($expected_result, $result);
 }
開發者ID:swk,項目名稱:bluebox,代碼行數:11,代碼來源:Helper_Valid_Test.php

示例4: valid_alpha_test

 public function valid_alpha_test()
 {
     $this->assert_true_strict(valid::alpha('abc'))->assert_false_strict(valid::alpha('123'));
 }
開發者ID:enormego,項目名稱:EightPHP,代碼行數:4,代碼來源:validhelper.php

示例5: random

 /**
  * Tests the text::random() function.
  * @dataProvider random_provider
  * @group core.helpers.text.random
  * @test
  */
 public function random($type, $length = 8)
 {
     $this->markTestIncomplete('Test for PHP 5.3 bug needs to be counted, Kohana is still supporting 5.2');
     $result = text::random($type, $length);
     if ((string) $type) {
         // Checking length
         $this->assertEquals(utf8::strlen($result), $length);
         $pool = '';
         switch ($type) {
             case 'alnum':
                 $this->assertTrue(valid::alpha_numeric($result));
                 break;
             case 'alpha':
                 $this->assertTrue(valid::alpha($result));
                 break;
             case 'numeric':
                 $this->assertTrue(valid::numeric($result));
                 break;
             case 'nozero':
                 $this->assertTrue(is_numeric($result));
                 break;
             case 'hexdec':
                 $pool = '0123456789abcdef';
                 break;
             case 'distinct':
                 $pool = '2345679ACDEFHJKLMNPRSTUVWXYZ';
                 break;
             default:
                 $pool = (string) $type;
         }
         if ($pool) {
             if (preg_match('/[' . preg_quote((string) $pool, '/') . ']*/u', $result, $match)) {
                 $this->assertEquals($match[0], $result);
             } else {
                 $this->assertTrue(FALSE);
             }
         }
     } else {
         // Checking length
         $this->assertEquals($result, '');
     }
 }
開發者ID:swk,項目名稱:bluebox,代碼行數:48,代碼來源:Helper_Text_Test.php


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