CakePHP 是一個用於實現動態程式設計應用程式的開源工具,並為開發人員提供了不同類型的功能。驗證是 CakePHP 提供的功能之一,透過使用驗證,我們可以根據我們的要求為任意資料數組提供驗證。在 CakePHP 中,我們需要在資料驗證之前根據形狀和大小建立實體。這裡我們還需要考慮預設實體,這些實體將在實體對話之前進行驗證。我們也可以根據我們的要求應用驗證規則。
開始您的免費軟體開發課程
網頁開發、程式語言、軟體測試及其他
資訊批准是任何應用程式的重要組成部分,因為它有助於確保模型中的資訊適應應用程式的業務規則。例如,您應該確保密碼長度約為八個字符,或保證使用者名稱是特殊的。表徵批准規則使結構處理變得更加簡單。
對於審批週期有不同的看法。我們將在本節中介紹的是模型方面的內容。基本上:當您為模型呼叫 save() 技術時會發生什麼。有關如何處理顯示審批錯誤的更多資料。
現在讓我們來看看CakePHP中不同的驗證方法如下。
將另一個標準加入到欄位的標準集中。如果後續爭用是一個簇,則該欄位的規則清單將被第二個爭用所取代,而第三個爭用將被忽略。
文法
Add(string $specified field, array|string $specified name, array|Cake\Validation\ValidationRule $required rule [])
說明
在上面的語法中,我們使用不同參數的 add 方法。在上面的語法中,指定名稱用於定義我們需要新增的規則的名稱。此陣列用於根據要求定義此規則或多個規則,並傳回 $this.
透過使用這個方法,我們可以允許空白欄位
文法
allowEmpty(string $specified field, boolean|string|callable $whentrue, string|null msgull)
說明
在上面的語法中,我們使用不同參數的 add 方法。在上面的語法中,指定名稱用於定義我們需要新增的規則的名稱。布林參數用於指示何時需要允許清空,這裡我們也可以在執行建立或更新操作時根據 true 或 false 進行驗證。訊息用於顯示訊息字段,這將返回 $this.
透過使用此方法,我們可以根據我們的要求向欄位新增字母數字規則。
文法
alphanumeric (string $specified field, string|null $Msgnull, string|callable|null $whennull)
說明
在上面的語法中,我們使用不同參數的字母數字方法。在上面的語法中,指定名稱用於定義我們需要新增的規則的名稱。將另一個標準新增至欄位的標準集中。如果後續爭用是一個簇,則該欄位的規則清單將被第二次爭用取代,第三次爭用將被忽略,並傳回 $this。
透過該方法,我們可以根據需要在指定欄位中新增信用卡規則。
文法
creditCard(string $specified field , string $type'all', string|null $msgnull, string|callable|null $whennull)
說明
在上面的語法中,我們使用信用卡的方法來新增具有不同參數的規則。您需要應用標準的領域。
您需要允許的卡片類型。預設為“全部”。您還可以提供多種認可的卡片類型,例如“mastercard”、“visa”、“amex”。
標準達不到標準時的錯誤訊息。當應該應用批准規則並傳回 $this 時,「make」或「update」或一個可呼叫的函數有效。
透過使用此方法,我們可以根據我們的要求向該欄位新增電子郵件驗證規則。
文法
Email(string $specified field , boolean $checkMXfalse, string|null $msgnull, string|callable|null, $whennull)
說明
透過使用上面的語法,我們可以實作電子郵件驗證規則。您也需要應用標準的領域。
無論是否檢查MX記錄。
標準失敗時的錯誤訊息。
當需要套用核准規則時,「製作」或「更新」或可呼叫的函數有效。
透過使用此方法,我們可以對欄位套用字串驗證。
文法
maxLength(string $specified field, integer $max, string|null $msgnull, string|callable|null $whennull)
說明
In the above syntax, we use the maxLength method with different parameters. Here the specified field is used to define the field to which we want to apply the rule, max is used to define the maximum length of string, msgnull is used to show an error message when the rule fails.
By using this method, we can apply string validation to the field.
Syntax
minLength(string $specified field, integer $min, string|null $msgnull, string|callable|null $whennull)
Explanation
In the above syntax, we use the minLength method with different parameters. Here the specified field is used to define the field which we want to apply the rule, min is used to define the minimum length of string, msgnull is used to show an error message when the rule fails.
Now let’s see how we can create CakePHP validation with examples as follows. First, we need to make the changes in routes.php file as follows.
<?php use Cake\Http\Middleware\CsrfProtectionMiddleware; use Cake\Routing\Route\DashedRoute; use Cake\Routing\RouteBuilder; $routes->setRouteClass(DashedRoute::class); $routes->scope('/', function (RouteBuilder $builder) { $builder->registerMiddleware('csrf', new CsrfProtectionMiddleware([ 'httpOnly' => true, ])); $builder->applyMiddleware('csrf'); //$builder->connect('/pages',['controller'=>'Pages','action'=>'display', 'home']); $builder->connect('validation',['controller'=>'Valid','action'=>'index']); $builder->fallbacks(); }); ?>
Now create an index.php file and write the following code as follows.
<?php if($errors) { foreach($errors as $error) foreach($error as $mssg) echo '<font color="red">'.$mssg.'</font><br>'; } else { echo "There is no errors."; } echo $this->Form->create(NULL,array('url'=>'/validation')); echo $this->Form->control('username of person'); echo $this->Form->control('password'); echo $this->Form->button('Submit'); echo $this->Form->end(); ?>
Now execute the above code we will get the following screen as shown below screenshot.
Suppose let’s consider, if we enter only password then it shows username is required as shown in the following screenshot.
Similarly, we can apply validation for username of person filed as shown in the following screenshot as follows.
In this way, we can implement different methods such as to get, post as per our requirement.
We hope from this article you learn more about the CakePHP validation. From the above article, we have taken in the essential idea of the CakePHP validation and we also see the representation and example of the CakePHP validation. From this article, we learned how and when we use the CakePHP validation.
以上是CakePHP 驗證的詳細內容。更多資訊請關注PHP中文網其他相關文章!